From: oetiker Date: Tue, 22 Jun 2004 22:09:07 +0000 (+0000) Subject: The "$^" variable is GNU make-specific, and fails to compile under X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=65e3c1f5aeaa394405ecfb338ae18b24abf698b1;p=rrdtool-all.git The "$^" variable is GNU make-specific, and fails to compile under FreeBSD 4.10. Please change it to $<, which is more compatible. -- Stanislav Sinyagin git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk@280 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/program/src/Makefile.am b/program/src/Makefile.am index 1f1ff3af..804a00b1 100644 --- a/program/src/Makefile.am +++ b/program/src/Makefile.am @@ -84,7 +84,7 @@ rrdupdate_LDADD = rrdupdate.o librrd.la # -ln -s ${srcdir}/rrdupdate.c rrd_update.c rrdupdate.o: rrd_update.c - $(COMPILE) -DSTANDALONE -c -o $@ $^ + $(COMPILE) -DSTANDALONE -c -o $@ $< rrdtool_SOURCES = rrdtool_DEPENDENCIES = rrd_tool.o