From: Alexander Barton Date: Wed, 26 Sep 2012 23:11:01 +0000 (+0200) Subject: Makefile.am: don't use "make -C", it isn't portable X-Git-Tag: rel-20-rc1~54 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=114644cdb0a54804e4f68818235cc2d99b90322c;p=ngircd Makefile.am: don't use "make -C", it isn't portable --- diff --git a/Makefile.am b/Makefile.am index 43b37e75..f6a97ce6 100644 --- 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 \