This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

A textinfo patch for egcs


I was told textinfo in libg++ wouldn't compile on mips-sgi-irix5.3
due to the incorrect flags to ar. But texinfo won't allow override.
I am enclosing a patch here.

-- 
H.J. Lu (hjl@gnu.org)
---
Sun Jan 11 16:54:37 1999  H.J. Lu  (hjl@gnu.org)

	* libtxi/Makefile.in (AR_FLAGS): Defined as "rc".

Index: libtxi/Makefile.in
===================================================================
RCS file: /home/work/cvs/gnu/egcs/texinfo/libtxi/Makefile.in,v
retrieving revision 1.1.1.2
diff -u -r1.1.1.2 Makefile.in
--- Makefile.in	1997/08/29 00:32:58	1.1.1.2
+++ Makefile.in	1998/01/12 00:55:37
@@ -23,6 +23,7 @@
 
 CC = @CC@
 AR = ar
+AR_FLAGS = rc
 RANLIB = @RANLIB@
 
 DEFS = @DEFS@
@@ -52,7 +53,7 @@
 
 libtxi.a: $(OBJS)
 	rm -f $@
-	$(AR) cq $@ $(OBJS)
+	$(AR) $(AR_FLAGS) $@ $(OBJS)
 	$(RANLIB) $@
 
 getopt.o: getopt.c getopt.h


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]