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.octo.it/?p=rrdtool.git;a=commitdiff_plain;h=110ae8b7e4893e9c641a8fcf9e787e2a0d4988ea 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/program@280 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/src/Makefile.am b/src/Makefile.am index 1f1ff3a..804a00b 100644 --- a/src/Makefile.am +++ b/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