diff options
author | jlam <jlam@pkgsrc.org> | 2002-11-06 23:25:38 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2002-11-06 23:25:38 +0000 |
commit | 04e917759a47fde7924927363954b5ea7abf1e1d (patch) | |
tree | f6d9bc14d7a1b3751c4e1258277a582e4a4f444b /wm | |
parent | e51f38bbd45c5c77be9fb829843f0fa9112d217c (diff) | |
download | pkgsrc-04e917759a47fde7924927363954b5ea7abf1e1d.tar.gz |
Fix path to C preprocessor embedded into WindowMaker to be "cc -E". This
addresses pkg/18737 by Matthias Friedrich.
Diffstat (limited to 'wm')
-rw-r--r-- | wm/windowmaker/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wm/windowmaker/Makefile b/wm/windowmaker/Makefile index aa888af1fe2..3dab85447d9 100644 --- a/wm/windowmaker/Makefile +++ b/wm/windowmaker/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2002/08/25 21:50:49 mjl Exp $ +# $NetBSD: Makefile,v 1.28 2002/11/06 23:25:38 jlam Exp $ VERS= 0.80.1 DISTNAME= WindowMaker-${VERS} @@ -23,6 +23,8 @@ GNU_CONFIGURE= YES CONFIGURE_ARGS+= --enable-usermenu \ --with-nlsdir=${PREFIX}/${PKGLOCALEDIR}/locale CONFIGURE_ENV+= LINGUAS=yes +CONFIGURE_ENV+= CPP_PATH="${CPP_PATH}" +CPP_PATH= ${CC} -E INSTALL_TARGET= install-strip |