From: Frédéric Marchal Date: Thu, 26 Jul 2012 13:37:32 +0000 (+0200) Subject: Use a Makefile compatible with Solaris X-Git-Tag: v2.3.3~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e9c12ce5dfa846db1c97b70482f8c065ad1c828;p=thirdparty%2Fsarg.git Use a Makefile compatible with Solaris On Solaris, the default make command doesn't know the -C command line option to change the directory. It is a GNU make extension. --- diff --git a/Makefile.in b/Makefile.in index 42e7c58..8bdc3f6 100644 --- a/Makefile.in +++ b/Makefile.in @@ -134,16 +134,16 @@ realclean: distclean rm -f TAGS install-po: - $(MAKE) -C po install + cd po ; $(MAKE) install uninstall-po: - $(MAKE) -C po uninstall + cd po ; $(MAKE) uninstall clean-po: - $(MAKE) -C po clean + cd po ; $(MAKE) clean update-po: - $(MAKE) -C po update-po + cd po ; $(MAKE) update-po po-from-tp: @echo "Fetching latest po files from translationprojetc.org"