From: chas w. <ch...@us...> - 2010-12-28 14:29:40
|
Update of /cvsroot/linux-atm/linux-atm/src/qgen In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv3476/src/qgen Modified Files: Tag: V2_5_2 Makefile.am Log Message: eliminate the error from automake above overriding CFLAGS this is also catches any special LDFLAGS that might have been set. we need to do this because qgen is run on the host cpu, not that target cpu Index: Makefile.am =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/qgen/Makefile.am,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** Makefile.am 30 Nov 2009 16:56:52 -0000 1.4 --- Makefile.am 28 Dec 2010 14:29:31 -0000 1.4.2.1 *************** *** 5,10 **** qgen_LDADD = -lfl ! CC = @CC_FOR_BUILD@ ! CFLAGS = @CFLAGS_FOR_BUILD@ #TESTS = $(check_PROGRAMS) --- 5,10 ---- qgen_LDADD = -lfl ! COMPILE = @CC_FOR_BUILD@ @CFLAGS_FOR_BUILD@ ! LINK = @CC_FOR_BUILD@ @CFLAGS_FOR_BUILD@ -o $@ #TESTS = $(check_PROGRAMS) |