diff options
author | Dan McGee <dan@archlinux.org> | 2007-02-23 02:00:30 +0000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-02-23 02:00:30 +0000 |
commit | c799433e423d5bdd6737b81483de82b9e98aed46 (patch) | |
tree | fa61b103e37e666a8be72e551fd098e62a74e3e7 | |
parent | 89046c32a341e7673ff458321e6387c3cc60c71a (diff) |
* Updated distcheck target- added some flags so pactest is 100% correct.
* Added a Makefile.am so contrib/ folder is included in dist.
-rw-r--r-- | .cvsignore | 1 | ||||
-rw-r--r-- | Makefile.am | 5 | ||||
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | contrib/Makefile.am | 5 |
4 files changed, 10 insertions, 2 deletions
@@ -20,3 +20,4 @@ stamp-h1 tags cscope.out +pacman-*.tar.gz diff --git a/Makefile.am b/Makefile.am index 68f2e240..9d3f6187 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,8 +1,9 @@ -SUBDIRS = lib/libalpm src/util src/pacman scripts doc etc pactest +SUBDIRS = lib/libalpm src/util src/pacman scripts doc etc pactest contrib + +DISTCHECK_CONFIGURE_FLAGS = --disable-fakeroot # Some files automatically included, so they aren't specified below: # AUTHORS, COPYING, NEWS, README -# TODO: move translation-help to ABOUT-NLS? EXTRA_DIST = HACKING # TODO : figure out a way to get 'make distcheck' to build with diff --git a/configure.ac b/configure.ac index 8890cd07..436c5fbe 100644 --- a/configure.ac +++ b/configure.ac @@ -220,6 +220,7 @@ etc/pacman.d/Makefile etc/pacman.d/mirrorlist etc/abs/Makefile pactest/Makefile +contrib/Makefile Makefile ]) diff --git a/contrib/Makefile.am b/contrib/Makefile.am new file mode 100644 index 00000000..9a3f3b3d --- /dev/null +++ b/contrib/Makefile.am @@ -0,0 +1,5 @@ +EXTRA_DIST = \ + bash_completion \ + pacsearch \ + zsh_completion + |