From 6728963c805371a5492c31303d247241f75b4d46 Mon Sep 17 00:00:00 2001 From: "cantab.net!aia21" Date: Thu, 3 Mar 2005 11:40:20 +0000 Subject: [PATCH] Fix from Christophe Grenier: some versions of make do not accept -C switch. (Logical change 1.684) --- Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 2f0ee189..9761f71d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -14,13 +14,13 @@ libtool: $(LIBTOOL_DEPS) $(SHELL) ./config.status --recheck strip: - $(MAKE) -C ntfsprogs strip + (cd ntfsprogs && $(MAKE) strip) || exit 1; extra: extras extras: - $(MAKE) -C ntfsprogs extras + (cd ntfsprogs && $(MAKE) extras) || exit 1; libs: - $(MAKE) -C libntfs libs + (cd libntfs && $(MAKE) libs) || exit 1;