diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-11-14 00:01:34 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2005-11-14 00:01:34 +0000 |
commit | bd9fb533b31c2427d854199fa59dccd357cf874b (patch) | |
tree | e93ee257d6df65307a785578bed48e7a9c3686b6 | |
parent | 267cbffa41fffff69c692911d128462f5bab2a69 (diff) |
Default xkb-output directory needs trailing slash.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 7 insertions, 2 deletions
@@ -1,4 +1,9 @@ -2005-11-12 Alan Coopersmith <alan.coopersmith@sun.com> +2005-11-13 Alan Coopersmith <alan.coopersmith@sun.com> + + * configure.ac: + Default xkb-output directory needs trailing slash. + +2005-11-13 Alan Coopersmith <alan.coopersmith@sun.com> * Xprint/doc/Makefile.am: * hw/dmx/Makefile.am: diff --git a/configure.ac b/configure.ac index 24fb8e6f1..245877929 100644 --- a/configure.ac +++ b/configure.ac @@ -353,7 +353,7 @@ AC_ARG_WITH(xkb-path, AS_HELP_STRING([--with-xkb-path=PATH], [Path to XK [ XKBPATH="${datadir}/X11/xkb" ]) AC_ARG_WITH(xkb-output, AS_HELP_STRING([--with-xkb-output=PATH], [Path to XKB output dir (default: ${datadir}/X11/xkb/compiled)]), [ XKBOUTPUT="$withval" ], - [ XKBOUTPUT="compiled" ]) + [ XKBOUTPUT="compiled/" ]) AC_ARG_WITH(rgb-path, AS_HELP_STRING([--with-rgb-path=PATH], [Path to RGB database (default: ${datadir}/X11/rgb)]), [ RGBPATH="$withval" ], [ RGBPATH="${datadir}/X11/rgb" ]) |