gcl-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gcl-devel] configure bug


From: Vadim V. Zhytnikov
Subject: [Gcl-devel] configure bug
Date: Sun, 08 Jan 2006 19:44:10 +0300
User-agent: Mozilla Thunderbird 1.0.7 (Windows/20050923)

Hi!

GCL configure/configure.in has a bug (unbalanced quotes)
which remained hidden for a long time but bash 3.1.1
reveals it.  With new bash one gets error

configure: line 2412: syntax error near unexpected token `('
configure: line 2412: `  case `(ac_space=' '; set | grep ac_space) 2>&1`

which is actually triggred by unbalanced quotes in other place.

Patch attached.

--
     Vadim V. Zhytnikov

      <address@hidden>
     <address@hidden>
diff -uNr gcl-2.6.7-orig/configure.in gcl-2.6.7/configure.in
--- gcl-2.6.7-orig/configure.in 2005-01-15 22:17:17 +0300
+++ gcl-2.6.7/configure.in      2006-01-08 18:20:46 +0300
@@ -538,7 +538,7 @@
        # results, and the version is kept in special file).
     
        if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
-           system=MP-RAS-`${AWK} '{print $3}' /etc/.relid'`
+           system=MP-RAS-`${AWK} '{print $3}' '/etc/.relid'`
        fi
        if test "`uname -s`" = "AIX" ; then
            system=AIX-`uname -v`.`uname -r`

reply via email to

[Prev in Thread] Current Thread [Next in Thread]