From ee537376ad830bed312d801e16bd3b26387ff1aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tatuya=20JINMEI=20=E7=A5=9E=E6=98=8E=E9=81=94=E5=93=89?= Date: Tue, 1 Sep 2009 22:30:28 +0000 Subject: [PATCH] avoid using @< (which some make don't seem to understand) for portability --- bin/tests/Makefile.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/tests/Makefile.in b/bin/tests/Makefile.in index 4dbdb78d6f..f92b3d133e 100644 --- a/bin/tests/Makefile.in +++ b/bin/tests/Makefile.in @@ -13,7 +13,7 @@ # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -# $Id: Makefile.in,v 1.136 2009/09/01 18:40:25 jinmei Exp $ +# $Id: Makefile.in,v 1.137 2009/09/01 22:30:28 jinmei Exp $ srcdir = @srcdir@ VPATH = @srcdir@ @@ -151,7 +151,8 @@ backtrace_test@EXEEXT@: backtrace_test_nosymtbl@EXEEXT@ #first step: create a first symbol table rm -f symtbl.c if test X${MKSYMTBL_PROGRAM} != X; then \ - ${MKSYMTBL_PROGRAM} ${top_srcdir}/util/mksymtbl.pl $<; else \ + ${MKSYMTBL_PROGRAM} ${top_srcdir}/util/mksymtbl.pl \ + backtrace_test_nosymtbl@EXEEXT@; else \ cp ${top_srcdir}/lib/isc/backtrace-emptytbl.c symtbl.c; fi #second step: build a binary with the first symbol table ${LIBTOOL_MODE_LINK} ${PURIFY} ${CC} ${BTTEST_CFLAGS} ${LDFLAGS} \