diff options
author | Alexey Neyman <stilor@att.net> | 2018-02-23 19:05:41 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-04-07 12:03:17 -0700 |
commit | 9dc94f36627ec79721e485bb4ae50af9fb67c9fc (patch) | |
tree | 42fc3520fbb9d6c30c61f3c3f0ff5ae2ac961cad /configure.ac | |
parent | 69df9ae9ddb806b42d962ae8a0b2b8f7b31f480e (diff) | |
download | crosstool-ng-9dc94f36627ec79721e485bb4ae50af9fb67c9fc.tar.gz crosstool-ng-9dc94f36627ec79721e485bb4ae50af9fb67c9fc.tar.bz2 crosstool-ng-9dc94f36627ec79721e485bb4ae50af9fb67c9fc.zip |
Install "pure data" directories
... and update .gitignore. Survives 'make distcheck'.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index bd7ccb48..20d5b42f 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,11 @@ AC_CONFIG_AUX_DIR([scripts]) AC_CONFIG_MACRO_DIR([m4]) # TBD try to use gnu strictness? Just add the missing files? -AM_INIT_AUTOMAKE([-Wall -Werror foreign no-dist-gzip dist-xz dist-bzip2 subdir-objects]) +# Set automake defaults: +# - Tarballs are compressed with xz and bzip2 +# - Object files are generated in a subdirectory (new default in automake) +# - Request new tar format (old, tar-v7, breaks on long paths we have) +AM_INIT_AUTOMAKE([-Wall -Werror foreign no-dist-gzip dist-xz dist-bzip2 subdir-objects tar-pax]) #-------------------------------------------------------------------- # Allow dummy --{en,dis}able-{static,shared} |