diff options
author | 2009-10-15 22:49:39 +0100 | |
---|---|---|
committer | 2009-10-15 22:49:39 +0100 | |
commit | 20790beb3743f2099ca13284940961e3eb94f632 (patch) | |
tree | 5191155e357408d5000dd33ae3c0ed2f6b46b479 | |
parent | 5d0dd77eec2d53bf300ee8216c4023aea58ffcaf (diff) | |
download | paludis-20790beb3743f2099ca13284940961e3eb94f632.tar.gz paludis-20790beb3743f2099ca13284940961e3eb94f632.tar.xz |
yay autotools
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 96aff6840..3726cf0a2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,7 +4,7 @@ MAINTAINERCLEANFILES = Makefile.in configure config/* aclocal.m4 \ config.h config.h.in INSTALL AUTOMAKE_OPTIONS = dist-bzip2 no-dist-gzip std-options foreign EXTRA_DIST = autogen.bash automake-deps-dist-hack.tmp -SUBDIRS = misc test paludis python ruby src doc hooks vim bash-completion zsh-completion pkg-config +SUBDIRS = . misc test paludis python ruby src doc hooks vim bash-completion zsh-completion pkg-config DISTCHECK_CONFIGURE_FLAGS = --enable-qa --enable-ruby --enable-ruby-doc --enable-vim \ --enable-python --enable-python-doc --enable-xml \ @@ -53,7 +53,7 @@ install-data-local : built-sources : $(BUILT_SOURCES) built-sources-subdirs built-sources-subdirs : - for s in $(SUBDIRS) ; do $(MAKE) -C $$s built-sources || exit 1 ; done + for s in `echo $(SUBDIRS) | tr -d .` ; do $(MAKE) -C $$s built-sources || exit 1 ; done all-then-check : $(MAKE) all |