fix for proper gstreamer registry creation on installation and in the

debian package
This commit is contained in:
maroy 2005-07-05 11:23:50 +00:00
parent eea04b3886
commit 53893a3e50
11 changed files with 61 additions and 33 deletions

View file

@ -22,7 +22,7 @@
#
#
# Author : $Author: maroy $
# Version : $Revision: 1.4 $
# Version : $Revision: 1.5 $
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/bin/createDebianPackages.sh,v $
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
@ -147,10 +147,10 @@ echo ""
#-------------------------------------------------------------------------------
check_exe() {
if [ -x "`which $1 2> /dev/null`" ]; then
echo "Exectuable $1 found...";
echo "Executable $1 found...";
return 0;
else
echo "Exectuable $1 not found...";
echo "Executable $1 not found...";
return 1;
fi
}