Changeset 1434 in ProjectBuilder for devel/pb/lib
- Timestamp:
- Mar 18, 2012, 5:07:43 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/pb/lib/ProjectBuilder/Filter.pm
r1367 r1434 176 176 # Order is important as we need to handle hashes refs before simple vars 177 177 # (?: introduce a Non-capturing groupings cf man perlretut 178 # We need to avoid handling other VARs (Makefile e.g) so restrict here to $pb type of vars. 178 179 eval { $tmp =~ s/(\$\w+(?:-\>\{\'\w+\'\})*)/$1/eeg }; 179 180 if (($s =~ /^PBDESC$/) && ($line =~ /^ PBDESC/)) { … … 183 184 pb_log(3,"*** tmp:$tmp ***\n"); 184 185 } 186 # Support $/ vars 185 187 eval { $tmp =~ s/(\$\/)/$1/eeg }; 186 188 } elsif (($s =~ /^PBLOG$/) && ($line =~ /^PBLOG$/)) {
Note:
See TracChangeset
for help on using the changeset viewer.