summaryrefslogtreecommitdiff
path: root/hints
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2014-08-23 21:24:14 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2014-08-23 21:24:14 -0400
commitee0b5a126031ee1bd711da0170c5e5d4467d22c0 (patch)
treeff35af3ef0ab00666dc697de842aa155b072a506 /hints
parent097bd73b0c745ed0054475796b37eec1d50a4f6a (diff)
downloadperl-ee0b5a126031ee1bd711da0170c5e5d4467d22c0.tar.gz
Fix bad quoting.
Diffstat (limited to 'hints')
-rw-r--r--hints/hpux.sh2
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 ;;