[svn:parrot] r43403 - branches/one_make/tools/dev

coke at svn.parrot.org coke at svn.parrot.org
Thu Jan 7 02:46:04 UTC 2010


Author: coke
Date: Thu Jan  7 02:46:04 2010
New Revision: 43403
URL: https://trac.parrot.org/parrot/changeset/43403

Log:
No more :='s in makefiles

Modified:
   branches/one_make/tools/dev/checkdepend.pl

Modified: branches/one_make/tools/dev/checkdepend.pl
==============================================================================
--- branches/one_make/tools/dev/checkdepend.pl	Thu Jan  7 02:34:53 2010	(r43402)
+++ branches/one_make/tools/dev/checkdepend.pl	Thu Jan  7 02:46:04 2010	(r43403)
@@ -114,13 +114,13 @@
 $rules =~ s/\\\n//g;
 
 # replace all _DIR variables with their expansions.
-while ($rules =~ s/^([A-Z_]+_DIR)\s*:?=\s*(\S*)$//m) {
+while ($rules =~ s/^([A-Z_]+_DIR)\s*=\s*(\S*)$//m) {
     my ($var,$val) = ($1, $2);
     $rules =~ s/\$\($var\)/$val/g;
 }
 
 # expand PARROT_H_HEADERS
-$rules =~ m/^PARROT_H_HEADERS\s*:?=\s*(.*)$/m;
+$rules =~ m/^PARROT_H_HEADERS\s*=\s*(.*)$/m;
 my $phh = $1;
 
 $rules =~ s/\Q$(PARROT_H_HEADERS)/$phh/g;


More information about the parrot-commits mailing list