pkgsrc/x11/wdm/patches/patch-ab
jmmv e3cf012856 Fix an invalid shell construction in a script. Closes PR pkg/25336 by
Emmanuel Decitre.  Bump PKGREVISION to 6.

OK'ed during freeze by jlam@.
2005-09-22 21:33:45 +00:00

13 lines
360 B
Text

$NetBSD: patch-ab,v 1.4 2005/09/22 21:33:45 jmmv Exp $
--- configs/Xsession.XFree86.orig 2003-06-06 16:48:46.000000000 +0200
+++ configs/Xsession.XFree86
@@ -27,7 +27,7 @@ startup=$HOME/.xsession
resources=$HOME/.Xresources
if [ -f "$startup" ]; then
- exec "$startup $1"
+ exec $startup $1
else
if [ -f "$resources" ]; then
xrdb -load "$resources"