diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2002-08-12 12:25:20 +0200 |
---|---|---|
committer | hv <hv@crypt.org> | 2002-08-12 11:23:06 +0000 |
commit | 03ae59b2624f6cd2d8682b1ce153473816c7338c (patch) | |
tree | c40b28cec81adbbd258d89e059e1f7f137f70bf5 /hints | |
parent | 3484938bb2ab61a738a2ff7364d2b202c1cd2d62 (diff) | |
download | perl-03ae59b2624f6cd2d8682b1ce153473816c7338c.tar.gz |
Re: Smoke 17703 /pro/3gl/CPAN/perl-current
From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
Message-id: <20020812102347.AFB6.H.M.BRAND@hccnet.nl>
gcc bug test needs -lm
p4raw-id: //depot/perl@17712
Diffstat (limited to 'hints')
-rw-r--r-- | hints/hpux.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh index 905e1c0b85..b2a888c164 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -428,7 +428,7 @@ else echo "Testing for a certain gcc bug is fixed in your compiler..." # Try compiling the test case. - if $cc -o t001 -O $ccflags $ldflags ../hints/t001.c; then + if $cc -o t001 -O $ccflags $ldflags -lm ../hints/t001.c; then gccbug=`$run ./t001` case "$gccbug" in *fails*) |