diff options
Diffstat (limited to 'misc/xine-config.in')
-rw-r--r-- | misc/xine-config.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/misc/xine-config.in b/misc/xine-config.in index 5cc1c4c45..162767a89 100644 --- a/misc/xine-config.in +++ b/misc/xine-config.in @@ -18,6 +18,7 @@ Options: [--cflags] [--plugindir] [--skindir] + [--scriptdir] [--desktopdir] EOF exit $1 @@ -65,6 +66,9 @@ while test $# -gt 0; do --skindir) echo_skindir=yes ;; + --scriptdir) + echo_scriptdir=yes + ;; --desktopdir) echo_desktopdir=yes ;; @@ -96,6 +100,9 @@ fi if test "$echo_skindir" = "yes"; then echo "@XINE_SKINPATH@" fi +if test "$echo_scriptdir" = "yes"; then + echo "@XINE_SCRIPTPATH@" +fi if test "$echo_desktopdir" = "yes"; then echo "@XINE_DESKTOPPATH@" fi |