diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-22 05:06:09 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-22 05:06:09 +0000 |
commit | 51660ed528352b424b5c5027cd895ae303606971 (patch) | |
tree | f320d99592e3830ff80eb02b02c546fcd433908d | |
parent | 0cf115ef1b426406ab4344439c6ffcb9ee04d4c4 (diff) | |
download | perl-51660ed528352b424b5c5027cd895ae303606971.tar.gz |
procselfexe tweak: for some reason I had a ls in
/proc/self/exe, not the ls Configure thought it
would found.
p4raw-id: //depot/perl@13191
-rwxr-xr-x | Configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Thu Nov 22 07:43:52 EET 2001 [metaconfig 3.0 PL70] +# Generated on Thu Nov 22 08:04:01 EET 2001 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -11460,7 +11460,7 @@ case "$d_readlink" in "$define") if $issymlink /proc/self/exe ; then $ls -l /proc/self/exe > reflect - if $contains $ls reflect >/dev/null 2>&1; then + if $contains /`basename $ls` reflect >/dev/null 2>&1; then val="$define" echo "You have Linux-like /proc/self/exe." fi |