re PR bootstrap/51201 (build error without Ada compiler installed)
authorJakub Jelinek <jakub@redhat.com>
Thu, 1 Dec 2011 09:36:59 +0000 (10:36 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Thu, 1 Dec 2011 09:36:59 +0000 (10:36 +0100)
PR bootstrap/51201
* gcc-interface/Make-lang.in: Initialize RTS_DIR with = instead of :=.

From-SVN: r181877

gcc/ada/ChangeLog
gcc/ada/gcc-interface/Make-lang.in

index 77fd4bf15d1ed4f29bc3a068855afee9f575ff01..9a8a4ed3fab82eaae4f618c393405e82cccf6fd9 100644 (file)
@@ -1,3 +1,8 @@
+2011-12-01  Jakub Jelinek  <jakub@redhat.com>
+
+       PR bootstrap/51201
+       * gcc-interface/Make-lang.in: Initialize RTS_DIR with = instead of :=.
+
 2011-11-24  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
 
        * s-taprop-tru64.adb (Create_Task): Use Unrestricted_Access.
index 44d75154779c543f96d627f96938e0e417872fac..e375796ec8e6139f05b2affa90e693a1d101aec6 100644 (file)
@@ -118,7 +118,7 @@ ifeq ($(build), $(host))
 
     # put the host RTS dir first in the PATH to hide the default runtime
     # files that are among the sources
-    RTS_DIR:=$(strip $(subst \,/,$(shell gnatls -v | grep adalib )))
+    RTS_DIR=$(strip $(subst \,/,$(shell gnatls -v | grep adalib )))
 
     ADA_TOOLS_FLAGS_TO_PASS=\
         CC="$(CC)" \
@@ -153,7 +153,7 @@ else
   else
     # This is a canadian cross. We should use a toolchain running on the
     # build platform and targeting the host platform.
-    RTS_DIR:=$(strip $(subst \,/,$(shell $(GNATLS_FOR_HOST) -v | grep adalib )))
+    RTS_DIR=$(strip $(subst \,/,$(shell $(GNATLS_FOR_HOST) -v | grep adalib )))
     ADA_TOOLS_FLAGS_TO_PASS=\
         CC="$(CC)" \
         $(COMMON_FLAGS_TO_PASS) $(ADA_FLAGS_TO_PASS)  \