This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
[PATCH, committed] Remove AM_MAKEFLAGS duplicates
- From: David Edelsohn <dje at watson dot ibm dot com>
- To: gcc-patches at gcc dot gnu dot org, libstdc++ at gcc dot gnu dot org
- Date: Wed, 08 Dec 2004 10:45:38 -0500
- Subject: [PATCH, committed] Remove AM_MAKEFLAGS duplicates
While debugging a new AIX bootstrap problem, I discovered that
AM_MAKEFLAGS contains some duplicate definitions. I removed them and
committed the change as obvious.
David
* Makefile.am (AM_MAKEFLAGS): Remove duplicate LIBCFLAGS and
PICFLAG.
* Makefile.in: Regenerated.
Index: Makefile.am
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/Makefile.am,v
retrieving revision 1.54
diff -c -p -r1.54 Makefile.am
*** Makefile.am 19 Nov 2004 14:10:58 -0000 1.54
--- Makefile.am 8 Dec 2004 15:37:41 -0000
*************** AM_MAKEFLAGS = \
*** 99,106 ****
"AR=$(AR)" \
"AS=$(AS)" \
"LD=$(LD)" \
- "LIBCFLAGS=$(LIBCFLAGS)" \
- "PICFLAG=$(PICFLAG)" \
"RANLIB=$(RANLIB)" \
"NM=$(NM)" \
"NM_FOR_BUILD=$(NM_FOR_BUILD)" \
--- 99,104 ----