Skip to content

Commit

Permalink
Merge pull request #29 from gerickson/user/gerickson/github-issue-28-…
Browse files Browse the repository at this point in the history
…dist-xz-support

Enable xz-compressed Distribution Archives
  • Loading branch information
gerickson authored Aug 23, 2024
2 parents 38b7439 + f52cb23 commit 93f674b
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -101,18 +101,20 @@ NL_FILTERED_CANONICAL_HOST
NL_FILTERED_CANONICAL_TARGET

#
# Configure automake with the desired options, indicating that this is not
# a native GNU package, that we want "silent" build rules, that we want
# objects built in the same subdirectory as their source rather than collapsed
# together at the top-level directory, that we want support for the
# PAX format for 'make dist', and that we do not want emission of
# 'PACKAGE' and 'VERSION' since AC_INIT already emits 'PACKAGE_NAME'
# and 'PACKAGE_VERSION'.
# Configure automake with the desired options, indicating that this is
# not a native GNU package, that we want "silent" build rules, that we
# want objects built in the same subdirectory as their source rather
# than collapsed together at the top-level directory, that we want
# support for the tar PAX format for 'make dist', that we do not want
# emission of 'PACKAGE' and 'VERSION' since AC_INIT already emits
# 'PACKAGE_NAME' and 'PACKAGE_VERSION', and that we want xz-compressed
# distribution archives in addition to gzip-compressed distribution
# archives.
#
# Disable silent build rules by either passing --disable-silent-rules to
# configure or passing V=1 to make
#
AM_INIT_AUTOMAKE([1.14 foreign silent-rules subdir-objects tar-pax no-define])
AM_INIT_AUTOMAKE([1.14 foreign silent-rules subdir-objects tar-pax no-define dist-xz])

#
# Silent build rules requires at least automake-1.11. Employ
Expand Down

0 comments on commit 93f674b

Please sign in to comment.