diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-13 20:31:57 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-13 20:31:57 +0000 |
commit | 54de8a32b367f4d4d0aad3a6cf4579d131cfa74f (patch) | |
tree | 9f7e35d5a30cdaadc2942146559498d8449377aa /texinfo | |
parent | 15bb9a20c0816e1481ca7a22ec49f0e7c110c663 (diff) | |
download | gcc-54de8a32b367f4d4d0aad3a6cf4579d131cfa74f.tar.gz |
* libtxi/Makefile.in (AR_FLAGS): Defined as "rc".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17337 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'texinfo')
-rw-r--r-- | texinfo/ChangeLog | 4 | ||||
-rw-r--r-- | texinfo/libtxi/Makefile.in | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/texinfo/ChangeLog b/texinfo/ChangeLog index 2a65dd9198d..f16f5647276 100644 --- a/texinfo/ChangeLog +++ b/texinfo/ChangeLog @@ -1,3 +1,7 @@ +Tue Jan 13 21:34:23 1998 H.J. Lu (hjl@gnu.org) + + * libtxi/Makefile.in (AR_FLAGS): Defined as "rc". + Tue Dec 2 20:24:40 1997 Bruno Haible <haible@ilog.fr> * makeinfo/makeinfo.c (find_and_load, convert_from_stream): diff --git a/texinfo/libtxi/Makefile.in b/texinfo/libtxi/Makefile.in index 8ec2485d9ae..0dae19fb2c2 100644 --- a/texinfo/libtxi/Makefile.in +++ b/texinfo/libtxi/Makefile.in @@ -1,7 +1,7 @@ # Makefile for GNU texinfo/libtxi. -*- Indented-Text -*- # $Id: Makefile.in,v 1.4 1998/01/13 20:31:57 law Exp $ -# Copyright (C) 1993, 96 Free Software Foundation, Inc. +# Copyright (C) 1993, 96, 98 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -23,6 +23,7 @@ VPATH = @srcdir@ CC = @CC@ AR = ar +AR_FLAGS = rc RANLIB = @RANLIB@ DEFS = @DEFS@ @@ -52,7 +53,7 @@ sub-all: all libtxi.a: $(OBJS) rm -f $@ - $(AR) cq $@ $(OBJS) + $(AR) $(AR_FLAGS) $@ $(OBJS) $(RANLIB) $@ getopt.o: getopt.c getopt.h |