(all-profiles, clean-profiles): Simplify slightly.
authorRaja R Harinath <harinath@hurrynot.org>
Mon, 14 Jun 2004 10:21:47 +0000 (10:21 -0000)
committerRaja R Harinath <harinath@hurrynot.org>
Mon, 14 Jun 2004 10:21:47 +0000 (10:21 -0000)
svn path=/trunk/mcs/; revision=29488

mcs/ChangeLog
mcs/Makefile

index 156bcaa6131ddd05daa9bb6a1e7314b7afd91939..03aec871018b3b9feb6b9a61158e0aabdbde7dc3 100644 (file)
@@ -1,3 +1,7 @@
+2004-06-14  Raja R Harinath  <rharinath@novell.com>
+
+       * Makefile (all-profiles, clean-profiles): Simplify slightly.
+
 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
 
        * Makefile: added target run-test-ondotnet.
index 087aafe126749897a5e4c1e74ac1913845bca77e..3d8978be03e1497c2e5ff9f06575391980313434 100644 (file)
@@ -26,12 +26,12 @@ clean: clean-recursive #clean-local
 # fun specialty targets
 
 all-profiles:
-       $(MAKE) PROFILE=default all || exit 1 ; \
-       $(MAKE) PROFILE=net_2_0 all || exit 1 ;
+       $(MAKE) PROFILE=default all
+       $(MAKE) PROFILE=net_2_0 all
 
 clean-profiles:
-       $(MAKE) PROFILE=default clean || exit 1 ; \
-       $(MAKE) PROFILE=net_2_0 clean || exit 1 ;
+       $(MAKE) PROFILE=default clean
+       $(MAKE) PROFILE=net_2_0 clean
 
 testcorlib:
        @cd class/corlib && $(MAKE) test run-test