diff options
author | tron <tron> | 1998-07-13 19:53:53 +0000 |
---|---|---|
committer | tron <tron> | 1998-07-13 19:53:53 +0000 |
commit | 153438d4ff2750c193dafb9f170bad2f8bfab150 (patch) | |
tree | daf1e9f39245252ea1d3f6f6e9cc1fe867f16d3a /x11/fvwm1 | |
parent | 31625b1413c72274465121f4ddf84f7291d57552 (diff) | |
download | pkgsrc-153438d4ff2750c193dafb9f170bad2f8bfab150.tar.gz |
Fix "${XMKMF}" so that building without "${X11BASE}/bin" in search path
will succeed.
Diffstat (limited to 'x11/fvwm1')
-rw-r--r-- | x11/fvwm1/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/x11/fvwm1/Makefile b/x11/fvwm1/Makefile index 1138b7a04d0..e15d3390e72 100644 --- a/x11/fvwm1/Makefile +++ b/x11/fvwm1/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 1998/07/04 09:19:08 mycroft Exp $ +# $NetBSD: Makefile,v 1.10 1998/07/13 19:53:53 tron Exp $ # FreeBSD Id: Makefile,v 1.12 1997/10/11 10:42:43 jkh Exp # @@ -12,7 +12,8 @@ DEPENDS+= xpm-3.4k:../../graphics/xpm RUN_DEPENDS= xpmroot:../../x11/xpmroot USE_IMAKE= yes -XMKMF= xmkmf && make Makefiles # drop -a because we have no `depends' target +# drop -a because we have no `depends' target +XMKMF= ${SH} -c "xmkmf && make Makefiles" post-extract: cd ${WRKSRC}/modules; \ |