Fix portability of scripts by using relative paths.

This commit is contained in:
Andrius Štikonas 2009-02-17 13:52:15 +02:00
parent 2e517bcd85
commit 6a00fedfe0
4 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
source variables source `dirname $0`/variables
if [ ! $MSGFMT ]; then if [ ! $MSGFMT ]; then
echo -e $RED"This program needs the msgfmt utility."$ENDCOLOR echo -e $RED"This program needs the msgfmt utility."$ENDCOLOR

View File

@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
source variables source `dirname $0`/variables
if [ ! $DIFF ]; then if [ ! $DIFF ]; then
echo -e $RED"This program needs the diff utility."$ENDCOLOR echo -e $RED"This program needs the diff utility."$ENDCOLOR

View File

@ -16,7 +16,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
source variables source `dirname $0`/variables
LC_NUMERIC="en_US.UTF-8" LC_NUMERIC="en_US.UTF-8"
ODD_CHARS='<27>' ODD_CHARS='<27>'

View File

@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
source variables source `dirname $0`/variables
if [ ! $SVN ]; then if [ ! $SVN ]; then
echo -e $RED"This program needs the svn utility."$ENDCOLOR echo -e $RED"This program needs the svn utility."$ENDCOLOR