diff options
author | obrien <obrien@FreeBSD.org> | 2005-10-24 08:34:13 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2005-10-24 08:34:13 +0800 |
commit | 195b40bbdcad8b2eaa22ec71605d56b63394ecbb (patch) | |
tree | 34ef63b348ba46ce4d0162d9d87d7a1396210630 /editors/vim | |
parent | 3115db9893a25b7b5b39e261297a315b650d2d3f (diff) | |
download | freebsd-ports-gnome-195b40bbdcad8b2eaa22ec71605d56b63394ecbb.tar.gz freebsd-ports-gnome-195b40bbdcad8b2eaa22ec71605d56b63394ecbb.tar.zst freebsd-ports-gnome-195b40bbdcad8b2eaa22ec71605d56b63394ecbb.zip |
Attempt to fix to respect non-standard LOCALBASE/X11BASE settings.
Let me just take this opportunity to express how much I hate autoconf's
attempt at containing AI, and note the size of hammer one has to use to
knock some real knowledge into its head.
Diffstat (limited to 'editors/vim')
-rw-r--r-- | editors/vim/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/editors/vim/Makefile b/editors/vim/Makefile index cbf4698de7a3..6222f93ea13c 100644 --- a/editors/vim/Makefile +++ b/editors/vim/Makefile @@ -138,9 +138,10 @@ USE_ICONV= yes pre-configure: @(cd ${WRKSRC} ; ${MAKE} distclean) - @${REINPLACE_CMD} -e 's|8\.2|8.4|; \ - s|\$$gtk_config_prefix/bin/gtk-config|\$${GTK_CONFIG}|; \ - s|\$$gtk_config_exec_prefix/bin/gtk-config|\$${GTK_CONFIG}|' \ + @${REINPLACE_CMD} -e 's|8\.2|8.4|g; \ + s|\$$gtk_config_prefix/bin/gtk-config|\$${GTK_CONFIG}|g; \ + s|\$$gtk_config_exec_prefix/bin/gtk-config|\$${GTK_CONFIG}|g; \ + s|/usr/local|${PREFIX}|g' \ ${WRKSRC}/auto/configure # Clean up junk files to keep them from being installed. |