diff options
author | tron <tron@pkgsrc.org> | 2002-05-31 10:09:35 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2002-05-31 10:09:35 +0000 |
commit | a768adf79e545efc01452e433267fe66bdfd5cc2 (patch) | |
tree | 655536edc0634a18851e7b70926f5f5cb200adac /x11/gdm/Makefile | |
parent | ccd1f22ebe6a2247ef3365bd46419f35701b6ec6 (diff) | |
download | pkgsrc-a768adf79e545efc01452e433267fe66bdfd5cc2.tar.gz |
Use correct path for X11 binaries in GDM scripts on systems where
"xpkwedge" is installed. Fix supplied by Rafal Boni in PR pkg/16781.
Diffstat (limited to 'x11/gdm/Makefile')
-rw-r--r-- | x11/gdm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/gdm/Makefile b/x11/gdm/Makefile index 99be9a0af54..5cfa2565ef6 100644 --- a/x11/gdm/Makefile +++ b/x11/gdm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2002/03/13 17:37:55 fredb Exp $ +# $NetBSD: Makefile,v 1.27 2002/05/31 10:09:35 tron Exp $ DISTNAME= gdm-2.2.0 PKGREVISION= 1 @@ -73,7 +73,7 @@ post-build: done cd ${WRKSRC}/config; \ for f in Default PostSession PreSession; do \ - ${SED} -e 's#/usr/bin/X11#${X11PREFIX}/bin#g' $$f >$$f.new; \ + ${SED} -e 's#/usr/bin/X11#${X11BASE}/bin#g' $$f >$$f.new; \ ${MV} $$f.new $$f; \ ${CHMOD} +x $$f; \ done |