-
Notifications
You must be signed in to change notification settings - Fork 567
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 copy/paste error in Configure #15423
Comments
From @dcollinsnSelf-explanatory. The code in question adds -quadmath to archname, but only if it isn't already there. However, since this was copied from a few lines earlier, it checks for -ld instead of -quadmath. |
From @dcollinsn0001-Configure-fix-copy-paste-error-in-archname.patchFrom 770fefe24cb2e491ab8686431a70729231f14dab Mon Sep 17 00:00:00 2001
From: Dan Collins <dcollinsn@gmail.com>
Date: Mon, 4 Jul 2016 16:20:57 -0400
Subject: [PATCH] Configure: fix copy-paste error in archname
---
Configure | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Configure b/Configure
index 42c67f3..68730f5 100755
--- a/Configure
+++ b/Configure
@@ -7187,8 +7187,8 @@ case "$usequadmath" in
$define)
echo "quadmath selected." >&4
case "$archname" in
- *-ld*) echo "...and architecture name already has -quadmath." >&4
- ;;
+ *-quadmath*) echo "...and architecture name already has -quadmath." >&4
+ ;;
*) archname="$archname-quadmath"
echo "...setting architecture name to $archname." >&4
;;
--
2.8.1
|
From @TuxOn Mon, 4 Jul 2016 16:14:28 -0700, Dan Collins (via RT)
Well spotted! Thanks, applied commit d06c8f8 -- |
The RT System itself - Status changed from 'new' to 'open' |
@tonycoz - Status changed from 'open' to 'pending release' |
From @khwilliamsonThank you for filing this report. You have helped make Perl better. With the release today of Perl 5.26.0, this and 210 other issues have been Perl 5.26.0 may be downloaded via: If you find that the problem persists, feel free to reopen this ticket. |
@khwilliamson - Status changed from 'pending release' to 'resolved' |
Migrated from rt.perl.org#128538 (status was 'resolved')
Searchable as RT128538$
The text was updated successfully, but these errors were encountered: