diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-20 15:53:24 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-20 15:53:24 +0000 |
commit | 01da3a5ebee728b46f5df88add8d98b51d4c358d (patch) | |
tree | f0f3f000cb5a57b5ac38802d120ee23770040583 /misc | |
parent | 153b641aba6fcc96aa80e86c7b7ac04233b03506 (diff) | |
download | xine-lib-01da3a5ebee728b46f5df88add8d98b51d4c358d.tar.gz xine-lib-01da3a5ebee728b46f5df88add8d98b51d4c358d.tar.bz2 |
first attempt to solve skin problem
CVS patchset: 2723
CVS date: 2002/09/20 15:53:24
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@" |