diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2014-08-23 21:24:14 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2014-08-23 21:24:14 -0400 |
commit | ee0b5a126031ee1bd711da0170c5e5d4467d22c0 (patch) | |
tree | ff35af3ef0ab00666dc697de842aa155b072a506 /hints | |
parent | 097bd73b0c745ed0054475796b37eec1d50a4f6a (diff) | |
download | perl-ee0b5a126031ee1bd711da0170c5e5d4467d22c0.tar.gz |
Fix bad quoting.
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 410a013d17..6ee7cdffbd 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -768,7 +768,7 @@ i_dbm=undef # In HP-UXes prior to 11.23 strtold() returned a HP-UX # specific union called long_double, not a C99 long double. -case "`grep "double strtold.const" /usr/include/stdlib.h`" in +case "`grep 'double strtold.const' /usr/include/stdlib.h`" in *"long double strtold"*) ;; # strtold should be safe. *) echo "Looks like your strtold() is non-standard..." >&4 d_strtold=undef ;; |