* configure.in (CC): Get ^CC, not just any old CC, from
authorJason Molenda <crash@cygnus>
Thu, 5 Oct 1995 05:39:40 +0000 (05:39 +0000)
committerJason Molenda <crash@cygnus>
Thu, 5 Oct 1995 05:39:40 +0000 (05:39 +0000)
        ${host_makefile_frag}.

ChangeLog
configure.in

index a6ac1339e2798eb3544be4e93ff76bdba8432a72..14f61238db09a4906c17a65cd03bc52f00ca40ff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Oct  4 22:05:36 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
+
+       * configure.in (CC): Get ^CC, not just any old CC, from
+       ${host_makefile_frag}.
+
 Wed Oct  4 21:55:00 1995  Jason Molenda  (crash@phydeaux.cygnus.com)
 
        * configure.in (CC): Try to get CC from 
index 213e65757dcbf4c345178eb55e012da2605c70d2..82cb6da815886db4eefe532b83412f826055835a 100644 (file)
@@ -134,7 +134,7 @@ fi
 # See if we can extract a definition of CC from the fragment.
 if [ -z "${CC}" ]; then
   if [ -n "${host_makefile_frag}" -a -f "${srcdir}/${host_makefile_frag}" ]; then
-    CC=`sed -n -e 's/CC[       ]*=[    ]*\(.*\)$/\1/p' < ${srcdir}/${host_makefile_frag}`
+    CC=`sed -n -e 's/^[        ]*CC[   ]*=[    ]*\(.*\)$/\1/p' < ${srcdir}/${host_makefile_frag}`
   fi
 fi
 
This page took 0.026218 seconds and 4 git commands to generate.