Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Feb 2017 14:39:00 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r434815 - head/emulators/unicorn/files
Message-ID:  <201702251439.v1PEd0Ds084740@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702251439.v1PEd0Ds084740>