diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2005-10-24 00:34:13 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2005-10-24 00:34:13 +0000 |
commit | 2c1e9e1b0b88e492131351699917070f03d83650 (patch) | |
tree | bced4f2da8e9e452816f506898bf1f864e23d2b6 | |
parent | Fix pkg-plist from last upgrade. (diff) |
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.
Notes
Notes:
svn path=/head/; revision=146198
-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. |