Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 30 Oct 2009 23:01:25 +0100 (CET)
From:      Jilles Tjoelker <jilles@stack.nl>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/140125: lang/pike72: syntax error in configure script
Message-ID:  <20091030220125.0C7CC228BE@snail.stack.nl>
Resent-Message-ID: <200910302210.n9UMA1N1048692@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         140125
>Category:       ports
>Synopsis:       lang/pike72: syntax error in configure script
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri Oct 30 22:10:01 UTC 2009
>Closed-Date:
>Last-Modified:
>Originator:     Jilles Tjoelker
>Release:        FreeBSD 9.0-CURRENT i386
>Organization:
MCGV Stack
>Environment:
/bin/sh r197691 or newer
>Description:
Due to a change in /bin/sh a mismatched single quote inside backticks   
(`...`) now causes configure to fail.
>How-To-Repeat:
Try to build lang/pike72 with a /bin/sh with r197691 change in it.
>Fix:
Add this patch as files/patch-configure or similar.

pike 7.8 appears to have this fix already.

--- lang-pike72-syntaxfix.patch begins here ---
--- src/configure.orig	2004-03-09 00:17:59.000000000 +0100
+++ src/configure	2009-10-30 22:43:19.000000000 +0100
@@ -1782,7 +1782,7 @@
       case "/$CC" in
         */smartlink\ cc)
            if test -x /usr/bin/cc; then
-             CC="`echo $CC|sed -e 's/ cc/ \/usr\/bin\/cc/`"
+             CC="`echo $CC|sed -e 's/ cc/ \/usr\/bin\/cc/'`"
            else
              : ;
            fi
--- lang-pike72-syntaxfix.patch ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20091030220125.0C7CC228BE>