From 7ff2d26d06a009984d5986afcc6be2eddccca23b Mon Sep 17 00:00:00 2001 From: fake Date: Wed, 8 Dec 2004 10:28:49 +0000 Subject: [PATCH] fake: xine: fix some strange bug by surrounding a 'test' statement with if... ?_? [2004120123312915733] (https://www.rocklinux.net/submaster) git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@5015 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc --- .../rene/xine/strange-test-bug.patch.xine-ui | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 package/rene/xine/strange-test-bug.patch.xine-ui diff --git a/package/rene/xine/strange-test-bug.patch.xine-ui b/package/rene/xine/strange-test-bug.patch.xine-ui new file mode 100644 index 000000000..7c7ab72ab --- /dev/null +++ b/package/rene/xine/strange-test-bug.patch.xine-ui @@ -0,0 +1,22 @@ +--- ./misc/Makefile.am.orig 2004-12-01 22:15:59.768577368 +0100 ++++ ./misc/Makefile.am 2004-12-01 22:16:18.036800176 +0100 +@@ -27,7 +27,7 @@ + chmod a+x xine-check + + xine-bugreport: xine-check +- test ! -f xine-bugreport && $(LN_S) xine-check xine-bugreport ++ if test ! -f xine-bugreport ; then $(LN_S) xine-check xine-bugreport ; fi + + + debug: +--- ./misc/Makefile.in.orig 2004-12-01 22:17:13.376387280 +0100 ++++ ./misc/Makefile.in 2004-12-01 22:17:31.632611912 +0100 +@@ -623,7 +623,7 @@ + chmod a+x xine-check + + xine-bugreport: xine-check +- test ! -f xine-bugreport && $(LN_S) xine-check xine-bugreport ++ if test ! -f xine-bugreport ; then $(LN_S) xine-check xine-bugreport ; fi + + debug: + @list='$(SUBDIRS)'; for subdir in $$list; do \