repo: ngircd action: commit revision: path_from: revision_from: 114644cdb0a54804e4f68818235cc2d99b90322c: path_to: revision_to:
commit 114644cdb0a54804e4f68818235cc2d99b90322c Author: Alexander BartonDate: Thu Sep 27 01:11:01 2012 +0200 Makefile.am: don't use "make -C", it isn't portable diff --git a/Makefile.am b/Makefile.am
--- a/Makefile.am +++ b/Makefile.am @@ -26,13 +26,13 @@ maintainer-clean-local: rm -f config.log debian testsuite: - make -C src/testsuite check + cd src/testsuite && make check lint: - make -C src/ngircd lint + cd src/ngircd && make lint srcdoc: - make -C doc srcdoc + cd doc && make srcdoc have-xcodebuild: @xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -list \
-----END OF PAGE-----