diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2014-04-06 00:38:09 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2014-04-06 00:38:09 +0800 |
commit | 5cc4a3e2f453227723550c8ab522d6f1ef1e5813 (patch) | |
tree | 4ad74b190889d573b0f1f2890d32a15aaef476d9 /editors | |
parent | 35eab7002f2af9bb9cd5d213c104b56a5765365b (diff) | |
download | freebsd-ports-gnome-5cc4a3e2f453227723550c8ab522d6f1ef1e5813.tar.gz freebsd-ports-gnome-5cc4a3e2f453227723550c8ab522d6f1ef1e5813.tar.zst freebsd-ports-gnome-5cc4a3e2f453227723550c8ab522d6f1ef1e5813.zip |
- Use MAKE_CMD
- Cosmetic change
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vim/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/vim/Makefile b/editors/vim/Makefile index aa4872164131..395d3405e315 100644 --- a/editors/vim/Makefile +++ b/editors/vim/Makefile @@ -39,8 +39,8 @@ WANT_GNOME= yes PATCHLEVEL= 229 PATCHFILES!= /usr/bin/jot -s " " -w "%03d" ${PATCHLEVEL} 1 ${PATCHLEVEL} -POSTPONED_PATCHES= 064 087 147 # patch files postponed to apply in post-patch: -SKIPPED_PATCHES= 208 # patch files to be skipped +POSTPONED_PATCHES= 064 087 147 # patch files postponed to be applied in post-patch: +SKIPPED_PATCHES= 208 # patch files skipped .for p in ${POSTPONED_PATCHES} DISTFILES+= ${PORTVERSION:R}.${p}:patch .endfor @@ -149,7 +149,7 @@ post-patch: pre-configure: @${CP} ${WRKSRC}/src/config.mk.dist ${WRKSRC}/src/auto/config.mk - @(cd ${WRKSRC}/src/ && ${MAKE} distclean) + @(cd ${WRKSRC}/src/ && ${MAKE_CMD} distclean) @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ -e 's|\$$gtk_config_prefix/bin/gtk-config|\$${GTK_CONFIG}|g' \ -e 's|\$$gtk_config_exec_prefix/bin/gtk-config|\$${GTK_CONFIG}|g' \ @@ -159,7 +159,7 @@ pre-configure: .endif post-configure: - @(cd ${WRKSRC}/src/ && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_ARGS} scratch config) + @(cd ${WRKSRC}/src/ && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} scratch config) @${REINPLACE_CMD} -e 's|#define HAVE_SYSINFO 1|/* #undef HAVE_SYSINFO */|' ${WRKSRC}/src/auto/config.h post-install: |