diff options
author | rakuco <rakuco@FreeBSD.org> | 2017-06-06 05:28:39 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2017-06-06 05:28:39 +0800 |
commit | 1e39d7cac8c982b08c262c2f1b3afae9efacb0f6 (patch) | |
tree | 289883294c78f890e21a72c1456f16606ca111b3 /games/spring | |
parent | 6dd05dd6a435c32792a81562d8703bb1625d5ec9 (diff) | |
download | freebsd-ports-gnome-1e39d7cac8c982b08c262c2f1b3afae9efacb0f6.tar.gz freebsd-ports-gnome-1e39d7cac8c982b08c262c2f1b3afae9efacb0f6.tar.zst freebsd-ports-gnome-1e39d7cac8c982b08c262c2f1b3afae9efacb0f6.zip |
Use MAKE_CMD instead of MAKE in pre-build.
We may be building with something other than make, as is the case if one uses
CMake's ninja generator.
Diffstat (limited to 'games/spring')
-rw-r--r-- | games/spring/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/spring/Makefile b/games/spring/Makefile index f11703b0ce15..512a9b13134a 100644 --- a/games/spring/Makefile +++ b/games/spring/Makefile @@ -114,6 +114,6 @@ post-patch: .endif pre-build: - cd ${WRKSRC} && ${MAKE} generateVersionFiles + cd ${WRKSRC} && ${MAKE_CMD} generateVersionFiles .include <bsd.port.post.mk> |