This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c2a0061
)
Fix missing single quote in a sed in hints/aix.sh
author
Peter Martini
<PeterCMartini@GMail.com>
Sun, 21 Jul 2013 22:45:45 +0000
(18:45 -0400)
committer
Karl Williamson
<public@khwilliamson.com>
Tue, 23 Jul 2013 00:40:37 +0000
(18:40 -0600)
hints/aix.sh
patch
|
blob
|
blame
|
history
diff --git
a/hints/aix.sh
b/hints/aix.sh
index
e1ae2fd
..
675cfa6
100644
(file)
--- a/
hints/aix.sh
+++ b/
hints/aix.sh
@@
-342,7
+342,7
@@
libswanted_uselargefiles="`getconf XBS5_ILP32_OFFBIG_LIBS 2>/dev/null|sed -e 's@
esac
# Some 32-bit getconfs will set ccflags to include -qlonglong
# but that's no longer needed with an explicit -qextc99.
- ccflags="`echo $ccflags | sed -e 's@ -qlonglong@@`"
+ ccflags="`echo $ccflags | sed -e 's@ -qlonglong@@
'
`"
;;
*) # Remove xlc-specific -qflags.
ccflags="`echo $ccflags | sed -e 's@ -q[^ ]*@ @g' -e 's@^-q[^ ]* @@g'`"