This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Small Ada makefile addition
- From: Corey Minyard <minyard at acm dot org>
- To: gcc at gcc dot gnu dot org
- Date: Wed, 14 Nov 2001 16:17:51 -0600
- Subject: Small Ada makefile addition
Just for completeness, it would be nice to have the following
Makefile.in change
in the ada directory (current CVS).
-Corey
Index: ada/Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/ada/Makefile.in,v
retrieving revision 1.8
diff -u -r1.8 Makefile.in
--- Makefile.in 2001/11/06 21:12:13 1.8
+++ Makefile.in 2001/11/14 22:12:16
@@ -104,6 +104,10 @@
MKDIR = mkdir -p
AR = ar
AR_FLAGS = rc
+# Some systems may be missing symbolic links, regular links, or both.
+# Allow configure to check this and use "ln -s", "ln", or "cp" as appropriate.
+LN=@LN@
+LN_S=@LN_S@
# How to invoke ranlib.
RANLIB = ranlib
# Test to use to see whether ranlib exists on the system.