diff options
author | Elizabeth Mattijsen <liz@dijkmat.nl> | 2003-09-09 01:58:34 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-09-08 21:01:25 +0000 |
commit | 63fd4edf0cafa2ba73b44442589aca27cbd4d767 (patch) | |
tree | 42834cb06abb291baaa777dd00dd5f03af80ddad /configpm | |
parent | 5aa555265cebf4b8f9bf09be0cd18e5e87e66ee4 (diff) | |
download | perl-63fd4edf0cafa2ba73b44442589aca27cbd4d767.tar.gz |
Integrate:
[ 21109]
Subject: [PATCH] configpm: about 1.5K less per thread
Message-Id: <p05111b21bb829c68b496@[192.168.56.4]>
[ 21110]
Urk. unique, not shared.
p4raw-link: @21110 on //depot/perl: 504b85fcd4e66cce16619378c0455c069a17ed61
p4raw-link: @21109 on //depot/perl: 868b60787e2625b93a647ab61f53849d7281cc87
p4raw-id: //depot/maint-5.8/perl@21111
p4raw-integrated: from //depot/perl@21108 'copy in' configpm (@19914..)
Diffstat (limited to 'configpm')
-rwxr-xr-x | configpm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -213,7 +213,7 @@ close CONFIG_SH; print CONFIG @non_v, "\n"; # copy config summary format from the myconfig.SH script -print CONFIG "my \$summary = <<'!END!';\n"; +print CONFIG "our \$summary : unique = <<'!END!';\n"; open(MYCONFIG,"<myconfig.SH") || die "open myconfig.SH failed: $!"; 1 while defined($_ = <MYCONFIG>) && !/^Summary of/; do { print CONFIG $_ } until !defined($_ = <MYCONFIG>) || /^\s*$/; |