From: Karim Barkati <karimbarkati@gmail.com>
Date: Thu, 1 Aug 2013 15:02:55 +0000 (+0200)
Subject: Bugfix in Makefile.
X-Git-Url: https://scm.cri.ensmp.fr/git/Faustine.git/commitdiff_plain/29c1f4c9f2543b9b079aa3960761214c920bb1f2?hp=cae947e13e0edb12892f269670b430108e924c06

Bugfix in Makefile.
---

diff --git a/Makefile b/Makefile
index 7ed6e35..0a0a5a7 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ faustine:
 .PHONY: clean mrproper
 
 clean:
-	@cd $(SRC_DIR) && $(MAKE) clean)
+	@(cd $(SRC_DIR) && $(MAKE) clean)
 	@(rm -f *~)
 
 mrproper: clean
diff --git a/Makefile.in b/Makefile.in
index f0ef09a..81ef8f0 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -13,7 +13,7 @@ faustine:
 .PHONY: clean mrproper
 
 clean:
-	@cd $(SRC_DIR) && $(MAKE) clean)
+	@(cd $(SRC_DIR) && $(MAKE) clean)
 	@(rm -f *~)
 
 mrproper: clean