diff options
Diffstat (limited to 'misc')
-rw-r--r-- | misc/Makefile.am | 1 | ||||
-rw-r--r-- | misc/xine-config.in | 12 |
2 files changed, 7 insertions, 6 deletions
diff --git a/misc/Makefile.am b/misc/Makefile.am index cb5b60a7e..3213f21df 100644 --- a/misc/Makefile.am +++ b/misc/Makefile.am @@ -10,6 +10,7 @@ EXTRA_DIST = autogen.sh \ xine-lib.spec \ xine_logo.mpv +datadir = $(XINE_DATADIR) data_DATA = xine_logo.mpv bin_SCRIPTS = xine-config diff --git a/misc/xine-config.in b/misc/xine-config.in index 828db3383..78006f158 100644 --- a/misc/xine-config.in +++ b/misc/xine-config.in @@ -17,7 +17,7 @@ Options: [--libs] [--cflags] [--plugindir] - [--skindir] + [--datadir] [--logomrl] [--scriptdir] [--desktopdir] @@ -65,8 +65,8 @@ while test $# -gt 0; do --plugindir) echo_plugindir=yes ;; - --skindir) - echo_skindir=yes + --datadir) + echo_datadir=yes ;; --logomrl) echo_logomrl=yes @@ -105,11 +105,11 @@ fi if test "$echo_plugindir" = "yes"; then echo "@XINE_PLUGINPATH@" fi -if test "$echo_skindir" = "yes"; then - echo "@XINE_SKINPATH@" +if test "$echo_datadir" = "yes"; then + echo "@XINE_DATADIR@" fi if test "$echo_logomrl" = "yes"; then - echo "file://@XINE_SKINPATH@/xine_logo.mpv" + echo "file://@XINE_DATADIR@/xine_logo.mpv" fi if test "$echo_scriptdir" = "yes"; then echo "@XINE_SCRIPTPATH@" |