[svn:parrot] r38268 - trunk/config/gen/makefiles

fperrad at svn.parrot.org fperrad at svn.parrot.org
Wed Apr 22 11:15:19 UTC 2009


Author: fperrad
Date: Wed Apr 22 11:15:19 2009
New Revision: 38268
URL: https://trac.parrot.org/parrot/changeset/38268

Log:
[build] fix warning on Windows (introduced by r38256)

makefile:638: warning: overriding commands for target `.s.o'
makefile:636: warning: ignoring old commands for target `.s.o'

Modified:
   trunk/config/gen/makefiles/root.in

Modified: trunk/config/gen/makefiles/root.in
==============================================================================
--- trunk/config/gen/makefiles/root.in	Wed Apr 22 11:12:32 2009	(r38267)
+++ trunk/config/gen/makefiles/root.in	Wed Apr 22 11:15:19 2009	(r38268)
@@ -537,8 +537,8 @@
 
 .s$(O) : # suffix rule (limited support)
 	@$(PERL) tools/dev/cc_flags.pl $(CUR_DIR)/CFLAGS $(CC) "" $(CFLAGS) -I$(@D) @cc_o_out@$@ -c $<
-.S$(O) : # suffix rule (limited support)
-	@$(PERL) tools/dev/cc_flags.pl $(CUR_DIR)/CFLAGS $(CC) "" $(CFLAGS) -I$(@D) @cc_o_out@$@ -c $<
+#UNLESS(win32).S$(O) : # suffix rule (limited support)
+#UNLESS(win32)	@$(PERL) tools/dev/cc_flags.pl $(CUR_DIR)/CFLAGS $(CC) "" $(CFLAGS) -I$(@D) @cc_o_out@$@ -c $<
 
 # XXX These obviously require parrot: had trouble adding parrot as a dependency
 # here, though. Ignored on Mac OS X, at least.


More information about the parrot-commits mailing list