Date: Fri, 15 Aug 2014 22:09:25 +0000 (UTC) From: Adam Weinberger <adamw@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r365060 - head/math/eval/files Message-ID: <201408152209.s7FM9PEA030053@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adamw Date: Fri Aug 15 22:09:25 2014 New Revision: 365060 URL: http://svnweb.freebsd.org/changeset/ports/365060 QAT: https://qat.redports.org/buildarchive/r365060/ Log: Fix build on -current. Modified: head/math/eval/files/patch-Makefile Modified: head/math/eval/files/patch-Makefile ============================================================================== --- head/math/eval/files/patch-Makefile Fri Aug 15 22:04:22 2014 (r365059) +++ head/math/eval/files/patch-Makefile Fri Aug 15 22:09:25 2014 (r365060) @@ -5,7 +5,7 @@ # trouble with any of the other source modules. # -CCFLAGS=-c -+CCFLAGS=-c $(CFLAGS) ++CCFLAGS=-c $(CFLAGS) ${CPPFLAGS} # # On some systems, you can use LIBC=-lc_s to make the program smaller by # linking to a shared library. @@ -21,7 +21,7 @@ Eval$(EXE): $(OBJFILES) - $(CC) -o Eval $(OBJFILES) $(LIBM) $(LIBC) -+ $(CC) -o Eval $(OBJFILES) $(LIBM) $(LIBC) $(LIBREADLINE) ++ $(CC) -o Eval $(OBJFILES) $(LIBM) $(LIBC) $(LIBREADLINE) ${LDFLAGS} chmod 755 Eval eval: Eval$(EXE)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201408152209.s7FM9PEA030053>