diff options
author | tron <tron> | 2002-05-31 10:09:35 +0000 |
---|---|---|
committer | tron <tron> | 2002-05-31 10:09:35 +0000 |
commit | 57cfee71daa007f917cc2c36f2695340335629c8 (patch) | |
tree | 655536edc0634a18851e7b70926f5f5cb200adac /x11 | |
parent | d6fff579b613ef8dd8418d12aef0cf4e08e75fc4 (diff) | |
download | pkgsrc-57cfee71daa007f917cc2c36f2695340335629c8.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')
-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 |