Commit e989b3be authored by Sam Hocevar's avatar Sam Hocevar

* ./toolbox: the Solaris diff does not understand -q, just replaced it

    with 2>&1 >/dev/null.
parent b619d281
#! /bin/sh #! /bin/sh
## toolbox for the VLC media player ## toolbox for the VLC media player
## $Id: toolbox,v 1.22 2003/04/14 23:07:38 sam Exp $ ## $Id: toolbox,v 1.23 2003/04/14 23:10:20 sam Exp $
## ##
## Authors: Samuel Hocevar <sam@zoy.org> ## Authors: Samuel Hocevar <sam@zoy.org>
...@@ -359,7 +359,7 @@ then ...@@ -359,7 +359,7 @@ then
echo '#ifdef __PLUGIN__' >> ${file}.in echo '#ifdef __PLUGIN__' >> ${file}.in
cat ${LIBVLC_HEADERS} | grep '^ *VLC_EXPORT.*;' | sed -e 's/VLC_EXPORT( *\([^,]*\), *\([^,]*\), *\(.*\));.*/# define \2 p_symbols->\2_inner/' >> ${file}.in cat ${LIBVLC_HEADERS} | grep '^ *VLC_EXPORT.*;' | sed -e 's/VLC_EXPORT( *\([^,]*\), *\([^,]*\), *\(.*\));.*/# define \2 p_symbols->\2_inner/' >> ${file}.in
echo '#endif /* __PLUGIN__ */' >> ${file}.in echo '#endif /* __PLUGIN__ */' >> ${file}.in
if diff -q ${file} ${file}.in if diff 2>&1 >/dev/null ${file} ${file}.in
then then
rm -f ${file}.in rm -f ${file}.in
else else
...@@ -373,7 +373,7 @@ then ...@@ -373,7 +373,7 @@ then
echo '#define STORE_SYMBOLS( p_symbols ) \' >> ${file}.tmp echo '#define STORE_SYMBOLS( p_symbols ) \' >> ${file}.tmp
cat ${LIBVLC_HEADERS} | grep '^ *VLC_EXPORT.*;' | sed -e 's/VLC_EXPORT( *\([^,]*\), *\([^,]*\), *\(.*\));.*/ (p_symbols)->\2_inner = \2; \\/' >> ${file}.tmp cat ${LIBVLC_HEADERS} | grep '^ *VLC_EXPORT.*;' | sed -e 's/VLC_EXPORT( *\([^,]*\), *\([^,]*\), *\(.*\));.*/ (p_symbols)->\2_inner = \2; \\/' >> ${file}.tmp
echo '' >> ${file}.tmp echo '' >> ${file}.tmp
if diff -q ${file} ${file}.tmp if diff 2>&1 >/dev/null ${file} ${file}.tmp
then then
rm -f ${file}.tmp rm -f ${file}.tmp
else else
...@@ -403,7 +403,7 @@ then ...@@ -403,7 +403,7 @@ then
fi fi
echo " } while( 0 );" >> ${file}.tmp echo " } while( 0 );" >> ${file}.tmp
echo "" >> ${file}.tmp echo "" >> ${file}.tmp
if diff -q ${file} ${file}.tmp if diff 2>&1 >/dev/null ${file} ${file}.tmp
then then
rm -f ${file}.tmp rm -f ${file}.tmp
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment