In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/d06c8f869698f7905df974ab8bafb703a5438fc1?hp=caab73c0a28609db91fe0e418914b450d235176f>
- Log ----------------------------------------------------------------- commit d06c8f869698f7905df974ab8bafb703a5438fc1 Author: H.Merijn Brand <[email protected]> Date: Tue Jul 5 18:49:29 2016 +0200 [perl #128538] [PATCH] Fix copy/paste error in Configure Self-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. ----------------------------------------------------------------------- Summary of changes: Configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configure b/Configure index 89585f1..2a885ee 100755 --- a/Configure +++ b/Configure @@ -7187,7 +7187,7 @@ 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 -- Perl5 Master Repository
