diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2018-12-25 20:25:39 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2018-12-25 20:25:39 +0000 |
commit | 707c6bf295fc3955c86c9244533c1524bb7dea15 (patch) | |
tree | 5754f0a521127b72390a51a263bc6e84b5177927 /emulators/visualboyadvance-m | |
parent | e3b5edc5e789bcd6057c4a01e4c618dbb1509756 (diff) |
Change cmake default behaviour to outsource.
Ports that build out of source now simply can use "USES=cmake"
instead of "USES=cmake:outsource". Ports that fail to build
out of source now need to specify "USES=cmake:insource".
I tried to only set insource where explictely needed.
PR: 232038
Exp-run by: antoine
Notes
Notes:
svn path=/head/; revision=488341
Diffstat (limited to 'emulators/visualboyadvance-m')
-rw-r--r-- | emulators/visualboyadvance-m/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/visualboyadvance-m/Makefile b/emulators/visualboyadvance-m/Makefile index 79463bde2dea..39e51d442ca4 100644 --- a/emulators/visualboyadvance-m/Makefile +++ b/emulators/visualboyadvance-m/Makefile @@ -41,7 +41,7 @@ DOS2UNIX_REGEX= .*\.(c|cpp|h|ypp) USE_XORG= x11 xext USE_GL= gl glu USE_SDL= sdl -USES= cmake dos2unix pkgconfig +USES= cmake:insource dos2unix pkgconfig INSTALLS_ICONS= yes CMAKE_ARGS= -DVERSION:STRING="${PORTVERSION}" \ -DSYSCONFDIR:STRING="${PREFIX}/etc" \ |