diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-09-10 14:34:32 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-09-10 14:34:32 +0000 |
commit | 9385b9101a80b907e114a9ba403eda3cb9efd5b9 (patch) | |
tree | 0678ea8008202c57b4cf217ed45fd87197cb704b | |
parent | af3b0d2c3e72cd4adafc9af71fffe430c18fe0f5 (diff) | |
download | xine-lib-9385b9101a80b907e114a9ba403eda3cb9efd5b9.tar.gz xine-lib-9385b9101a80b907e114a9ba403eda3cb9efd5b9.tar.bz2 |
Humm, after all, xine handle mrl ;-)
CVS patchset: 2648
CVS date: 2002/09/10 14:34:32
-rw-r--r-- | misc/xine-config.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/misc/xine-config.in b/misc/xine-config.in index d62e94fa9..f35dc5dad 100644 --- a/misc/xine-config.in +++ b/misc/xine-config.in @@ -18,7 +18,7 @@ Options: [--cflags] [--plugindir] [--skindir] - [--logofile] + [--logomrl] [--scriptdir] [--desktopdir] [--localedir] @@ -68,8 +68,8 @@ while test $# -gt 0; do --skindir) echo_skindir=yes ;; - --logofile) - echo_logofile=yes + --logomrl) + echo_logomrl=yes ;; --scriptdir) echo_scriptdir=yes @@ -108,8 +108,8 @@ fi if test "$echo_skindir" = "yes"; then echo "@XINE_SKINPATH@" fi -if test "$echo_logofile" = "yes"; then - echo "@XINE_SKINPATH@/xine_logo.mpv" +if test "$echo_logomrl" = "yes"; then + echo "file://@XINE_SKINPATH@/xine_logo.mpv" fi if test "$echo_scriptdir" = "yes"; then echo "@XINE_SCRIPTPATH@" |