Index: ossp-pkg/pth/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/pth/ChangeLog,v rcsdiff -q -kk '-r1.546' '-r1.547' -u '/v/ossp/cvs/ossp-pkg/pth/ChangeLog,v' 2>/dev/null --- ChangeLog 2001/03/27 15:34:29 1.546 +++ ChangeLog 2001/03/30 11:02:50 1.547 @@ -21,7 +21,9 @@ Changes between 1.4.0 and 1.4.1 (24-Mar-2001 to xx-Mar-2001) - *) Fixed "make striptease": pth_string.c was not included. + *) Fixed "make striptease": pth_string.c was not included and some + commands which were removed at all (and this way causes syntax + errors) will be now correctly commented out with ":" commands. [Paolo Bonzini ] *) Fixed pth.pod: a closing angle bracket was missing, leading to Index: ossp-pkg/pth/striptease.pl RCS File: /v/ossp/cvs/ossp-pkg/pth/striptease.pl,v rcsdiff -q -kk '-r1.11' '-r1.12' -u '/v/ossp/cvs/ossp-pkg/pth/striptease.pl,v' 2>/dev/null --- striptease.pl 2001/03/27 15:34:29 1.11 +++ striptease.pl 2001/03/30 11:02:50 1.12 @@ -134,15 +134,15 @@ $c = ''; $c .= $_ while (); close(FP); -$c =~ s|chmod \+rx pth-config||s; -$c =~ s|chmod \+rx pthread-config||s; -$c =~ s|rm -f pthread-config||s; +$c =~ s|chmod \+rx pth-config|: $&|s; +$c =~ s|chmod \+rx pthread-config|: $&|s; +$c =~ s|rm -f pthread-config|: $&|s; $c =~ s|pth-config||sg; $c =~ s|pthread-config||sg; $c =~ s|TB=`.+?`|TB=''|s; $c =~ s|TN=`.+?`|TN=''|s; -$c =~ s|echo \"\$ac_t\"\"\" 1>\&6||sg; -$c =~ s|echo \"\$ac_t\"\"\$\{TB\}.+?:\$\{TN\}" 1>&6||sg; +$c =~ s|echo \"\$ac_t\"\"\" 1>\&6|: $&|sg; +$c =~ s|echo \"\$ac_t\"\"\$\{TB\}.+?:\$\{TN\}" 1>&6|: $&|sg; $c =~ s|enable_batch=no|enable_batch=yes|sg; open(FP, ">$dst/configure"); print FP $c;