diff options
author | tron <tron@pkgsrc.org> | 1998-07-13 19:53:53 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1998-07-13 19:53:53 +0000 |
commit | bcb522a6b2473a54efc2529b515d6878f557a675 (patch) | |
tree | daf1e9f39245252ea1d3f6f6e9cc1fe867f16d3a /x11/fvwm1 | |
parent | 472d4c94c773e47549006871056112179c9c7204 (diff) | |
download | pkgsrc-bcb522a6b2473a54efc2529b515d6878f557a675.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; \ |