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 8879e9fe6..5cc1c4c45 100644 --- a/misc/xine-config.in +++ b/misc/xine-config.in @@ -18,6 +18,7 @@ Options: [--cflags] [--plugindir] [--skindir] + [--desktopdir] EOF exit $1 } @@ -64,6 +65,9 @@ while test $# -gt 0; do --skindir) echo_skindir=yes ;; + --desktopdir) + echo_desktopdir=yes + ;; *) usage 1 1>&2 ;; @@ -92,3 +96,6 @@ fi if test "$echo_skindir" = "yes"; then echo "@XINE_SKINPATH@" fi +if test "$echo_desktopdir" = "yes"; then + echo "@XINE_DESKTOPPATH@" +fi |