From 4e9c12ce5dfa846db1c97b70482f8c065ad1c828 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Marchal?= Date: Thu, 26 Jul 2012 15:37:32 +0200 Subject: [PATCH] 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. --- Makefile.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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" -- 2.47.2