Annyoing tabs and missing chmod +x

Sorry, scratch that.
This patch is actually tested now.

The real problem:
/usr/bin/perl -MExtUtils::Command -e cp src/pmc/perl6_group.dll src/ops/perl6_ops.dll src/ops/perl6_ops_switch.dll dynext
removes the existing -x bit, so it's p5 fault here. Incredible.
At least know now whom to wrangle.
--
Reini Urban
http://phpwiki.org/  http://murbreak.at/
/usr/bin/perl -MExtUtils::Command -e cp src/pmc/perl6_group.dll src/ops/perl6_ops.dll src/ops/perl6_ops_switch.dll  dynext
removes the existing -x bit, so it's p5 fault here. Incredible.

--- origsrc/rakudo-2010.03/build/Makefile.in	2010-03-17 13:26:16.000000000 +0200
+++ src/rakudo-2010.03/build/Makefile.in	2010-04-16 17:52:31.484375000 +0200
@@ -506,7 +506,7 @@ help:
 #
 config:
 	$(PERL) Configure.pl
-	
+
 $(PARROT):
 
 CRITIC_FILES=Configure.pl t/harness build/ tools/
@@ -531,6 +531,9 @@ release: manifest
 
 $(DYNEXT_TARGET): $(DYNPMC) $(DYNOPS)
 	$(CP) $(DYNPMC) $(DYNOPS) $(DYNEXT_DIR)
+	$(CHMOD) 755 $(DYNEXT_TARGET)
+	$(CHMOD) 755 $(DYNEXT_DIR)/$(OPS)$(LOAD_EXT)
+	$(CHMOD) 755 $(DYNEXT_DIR)/$(OPS)_switch$(LOAD_EXT)
 
 # (at)cc_o_out(at) and (at)ld_out(at) below cannot be assigned to
 # makefile macros, because some make utilities drop the trailing

Reply via email to