-
Notifications
You must be signed in to change notification settings - Fork 561
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PATCH] Fix missing single quote in hints/aix.sh #13118
Comments
From [email protected]This is a bug report for perl from petercmartini@gmail.com I had quite a bit of a headache trying to do a build on AIX due to a Patch attached to make things saner. Also, if this could be ported, I'd appreciate it. Perl Info
|
From [email protected]0001-Fix-missing-single-quote-in-a-sed-in-hints-aix.sh.patchFrom ed960dc2d1d95439e225c5e6b9a34f6d0cad0e97 Mon Sep 17 00:00:00 2001
From: Peter Martini <[email protected]>
Date: Sun, 21 Jul 2013 18:45:45 -0400
Subject: [PATCH] Fix missing single quote in a sed in hints/aix.sh
---
hints/aix.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/hints/aix.sh b/hints/aix.sh
index e1ae2fd..675cfa6 100644
--- 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'`"
--
1.7.0.3
|
From @jkeenanOn Sun Jul 21 15:50:50 2013, pcm wrote:
I'll apply this to blead as soon as (a) 'make test' completes and (b) I Thank you very much. |
The RT System itself - Status changed from 'new' to 'open' |
From @TuxOn Sun, 21 Jul 2013 17:22:07 -0700, "James E Keenan via RT"
I'd say apply now. This is an obvious mistake that only applies to AIX. -- |
From @TuxOn Sun, 21 Jul 2013 15:50:50 -0700, Peter Martini (via RT)
And it is in a CBU, not even in the Configure base code or directly run Looks like it was my mistake in committing Darins patch: commit 9d7bf48
Patch looks good, as I already replied to Jim, but your perl -V is from
-- |
From [email protected]On Mon, Jul 22, 2013 at 2:21 AM, H.Merijn Brand <h.m.brand@xs4all.nl> wrote:
I think the problem was I was using a GNU sed instead of the system |
From @TuxOn Mon, 22 Jul 2013 09:08:46 -0400, Peter Martini
AIX 53.0.0/ML12.$ sed --version That is my AIX: AIX 5.3.0.0/ML12 IBM,9115-505 PowerPC_POWER5/1898(2) Is your system a 32bit or a 64bit box? -- |
From [email protected]On Mon, Jul 22, 2013 at 9:27 AM, H.Merijn Brand <h.m.brand@xs4all.nl> wrote:
64bit. I think I've found the problem now, not the sed but the shell. bash: just fine Why that might be the case on this box, I won't speculate :-) |
From @jkeenanOn Sun Jul 21 22:50:41 2013, hmbrand wrote:
If anyone else can apply Peter's patch to blead, please do so now. Thank you very much. |
From @khwilliamsonThanks, applied as |
@khwilliamson - Status changed from 'open' to 'resolved' |
Migrated from rt.perl.org#118961 (status was 'resolved')
Searchable as RT118961$
The text was updated successfully, but these errors were encountered: