- Timestamp:
- Mar 5, 2012, 5:19:48 PM (14 years ago)
- Location:
- branches/meh_branches/ppstack_test
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
psModules (modified) (1 prop)
-
psModules/src/objects (modified) (1 prop)
-
psModules/src/objects/mksource.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/meh_branches/ppstack_test
- Property svn:mergeinfo changed
-
branches/meh_branches/ppstack_test/psModules
- Property svn:mergeinfo set to
-
branches/meh_branches/ppstack_test/psModules/src/objects
- Property svn:ignore
-
old new 5 5 *.la 6 6 *.lo 7 pmSourceIO_CMF_PS1_V1.c 8 pmSourceIO_CMF_PS1_V2.c 9 pmSourceIO_CMF_PS1_V3.c 10 pmSourceIO_CMF_PS1_V4.c 11 pmSourceIO_CMF_PS1_V3.v1.c 12 pmSourceIO_CMF_PS1_V1.v1.c 13 pmSourceIO_CMF_PS1_V2.v1.c 14
-
- Property svn:ignore
-
branches/meh_branches/ppstack_test/psModules/src/objects/mksource.pl
r31670 r33415 14 14 15 15 # see if we can add in PS1_DV* and PS1_SV* as well... 16 @cmfmodes = ("PS1_V1", 1,16 %cmfmodes = ("PS1_V1", 1, 17 17 "PS1_V2", 2, 18 "PS1_V3", 3); 18 "PS1_V3", 3, 19 "PS1_V4", 4); 20 21 print "1: $cmfmodes{1}\n"; 22 print "PS1_V1: $cmfmodes{'PS1_V1'}\n"; 19 23 20 24 open (FILE, "$template") || die "failed to open template $template\n"; … … 50 54 51 55 if ($gtMode) { 56 # print "gtMode : $line\n"; 52 57 $thisLevel = $cmfmodes{$gtMode}; 53 58 $myLevel = $cmfmodes{$cmfmode}; 54 if ($thisLevel <= $myLevel) { next; } 55 $line =~ s|\@<\S*\@\s*||; 59 print "gtMode : $gtMode vs $cmfmode, $thisLevel, $myLevel\n"; 60 if ($myLevel <= $thisLevel) { next; } 61 $line =~ s|\@>\S*\@\s*||; 56 62 } 57 63 58 64 if ($ltMode) { 65 # print "ltMode : $line\n"; 59 66 $thisLevel = $cmfmodes{$ltMode}; 60 67 $myLevel = $cmfmodes{$cmfmode}; 61 if ($thisLevel >= $myLevel) { next; } 62 $line =~ s|\@>\S*\@\s*||; 68 print "ltMode : $ltMode vs $cmfmode, $thisLevel, $myLevel\n"; 69 if ($myLevel >= $thisLevel) { next; } 70 $line =~ s|\@<\S*\@\s*||; 63 71 } 64 72
Note:
See TracChangeset
for help on using the changeset viewer.
