svn commit: r434815 - head/emulators/unicorn/files

Antoine Brodin antoine at FreeBSD.org
Sat Feb 25 14:39:01 UTC 2017


Author: antoine
Date: Sat Feb 25 14:39:00 2017
New Revision: 434815
URL: https://svnweb.freebsd.org/changeset/ports/434815

Log:
  Fix "make test" when PREFIX != LOCALBASE
  
  Reported by:	jbeich

Modified:
  head/emulators/unicorn/files/patch-tests_unit_Makefile

Modified: head/emulators/unicorn/files/patch-tests_unit_Makefile
==============================================================================
--- head/emulators/unicorn/files/patch-tests_unit_Makefile	Sat Feb 25 14:37:24 2017	(r434814)
+++ head/emulators/unicorn/files/patch-tests_unit_Makefile	Sat Feb 25 14:39:00 2017	(r434815)
@@ -4,7 +4,7 @@
  CFLAGS += -Wall -Werror -Wno-unused-function -g
  CFLAGS += -L ../../ -I ../../include
 -CFLAGS += -L ../../cmocka/src -I ../../cmocka/include
-+CFLAGS += -L $(PREFIX)/lib -I $(PREFIX)/include
++CFLAGS += -L $(LOCALBASE)/lib -I $(LOCALBASE)/include
  
  UNAME_S := $(shell uname -s)
  ifeq ($(UNAME_S), Linux)


More information about the svn-ports-all mailing list