Check-in Number:
|
431 | |
Date: |
2001-Mar-30 13:02:50 (local)
2001-Mar-30 11:02:50 (UTC) |
User: | rse |
Branch: | |
Comment: |
*** empty log message *** |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/pth/ChangeLog 1.546 -> 1.547
--- 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 <bonzini@pc-amo3.elet.polimi.it>]
*) Fixed pth.pod: a closing angle bracket was missing, leading to
|
|
ossp-pkg/pth/striptease.pl 1.11 -> 1.12
--- 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 (<FP>);
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;
|
|