summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-14 18:22:22 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-14 18:22:22 -0800
commit7a1b63f6425d98c68183ac3fc7fcd1b1f19bdc04 (patch)
tree75d07c9810ecfc71f1abb9d83474a8bef184370b
parent9a5d3288441c27c9adef949bdf09161446915dec (diff)
downloadtxr-7a1b63f6425d98c68183ac3fc7fcd1b1f19bdc04.tar.gz
txr-7a1b63f6425d98c68183ac3fc7fcd1b1f19bdc04.tar.bz2
txr-7a1b63f6425d98c68183ac3fc7fcd1b1f19bdc04.zip
configure (cc): Compute variable properly.
-rw-r--r--ChangeLog4
-rwxr-xr-xconfigure2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 32a9adca..3d3c588a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2009-11-14 Kaz Kylheku <kkylheku@gmail.com>
+ configure (cc): Compute variable properly.
+
+2009-11-14 Kaz Kylheku <kkylheku@gmail.com>
+
Fixes for bug 28086. When constructing a cobj, whose associated
C structure contains obj_t * references, we should initialize
that C structure after allocating the cobj. If we initialize
diff --git a/configure b/configure
index 44dda579..6e26ea9e 100755
--- a/configure
+++ b/configure
@@ -103,7 +103,7 @@ datadir=${datadir-'$(prefix)/share/txr'}
mandir=${mandir-'$(prefix)/share/man'}
cross=${cross-}
compiler_prefix=${compiler_prefix-}
-cc=${compiler-'$(cross)$(compiler_prefix)gcc'}
+cc=${cc-'$(cross)$(compiler_prefix)gcc'}
tool_prefix=${tool_prefix-}
lex=${lex-'$(cross)$(tool_prefix)flex'}
lexlib=${lexlib--lfl}