Skip to content

Commit 4fc4b00

Browse files
committed
configure.ac: Fix --with-xorg-conf-dir default value
This fixes the exact same issue seen here at libinput: https://cgit.freedesktop.org/xorg/driver/xf86-input-libinput/commit/?id=0cfe9ec6c23e73507fd0797bae24c5ed6fcce033
1 parent 937763d commit 4fc4b00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ AC_SUBST(inputdir)
7777

7878
AC_ARG_WITH(xorg-conf-dir,
7979
AC_HELP_STRING([--with-xorg-conf-dir=DIR],
80-
[Default xorg.conf.d directory [[default=$prefix/share/X11/xorg.conf.d/]]]),
80+
[Default xorg.conf.d directory [[default=${prefix}/share/X11/xorg.conf.d/]]]),
8181
[xorgconfdir="$withval"],
82-
[xorgconfdir="$prefix/share/X11/xorg.conf.d"])
82+
[xorgconfdir='${prefix}/share/X11/xorg.conf.d'])
8383
AC_SUBST(xorgconfdir)
8484

8585
# Checks for extensions

0 commit comments

Comments
 (0)