diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2024-02-17 19:35:47 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2024-02-17 19:42:30 +0200 |
commit | 9466306719f3b76e92fac4e55fbfd89ec92295fa (patch) | |
tree | 6cb2721ea810b7513dca1c9eeaab4b2ee20cb7d3 | |
parent | Build: Don't install TODO. (diff) | |
download | xz-9466306719f3b76e92fac4e55fbfd89ec92295fa.tar.xz |
Build: Makefile.am: Sort EXTRA_DIST.
Dirs first, then files in case-sensitive ASCII order.
-rw-r--r-- | Makefile.am | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am index fcd2ff30..56ecf7dd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -51,16 +51,13 @@ uninstall-local: endif EXTRA_DIST = \ - po/xz.pot-header \ - po4a \ - extra \ - doc/xz-logo.png \ + cmake \ dos \ doxygen \ + extra \ + po4a \ windows \ - cmake \ CMakeLists.txt \ - autogen.sh \ COPYING.CC-BY-SA-4.0 \ COPYING.GPLv2 \ COPYING.GPLv3 \ @@ -68,8 +65,11 @@ EXTRA_DIST = \ INSTALL.generic \ PACKAGERS \ TODO \ + autogen.sh \ build-aux/manconv.sh \ - build-aux/version.sh + build-aux/version.sh \ + doc/xz-logo.png \ + po/xz.pot-header ACLOCAL_AMFLAGS = -I m4 |