svn commit: r365060 - head/math/eval/files

Adam Weinberger adamw at FreeBSD.org
Fri Aug 15 22:09:25 UTC 2014


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)


More information about the svn-ports-all mailing list