Skip to content
Snippets Groups Projects
Commit fbe8d824 authored by rswindell's avatar rswindell
Browse files

Fix last commit for Debian Linux-x64 (reported by Mark Lewis)

parent a3ab90d0
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ if uname -m | egrep -v "(i[3456789]*|x)86" > /dev/null
then
machine=`uname -m | tr "[A-Z]" "[a-z]" | tr " " "_"`
fi
if uname -m | egrep -v "64" > /dev/null
if uname -m | egrep "64" > /dev/null
then
machine=`uname -m | tr "[A-Z]" "[a-z]" | tr " " "_"`
fi
......@@ -13,7 +13,7 @@ if [ $machine = "x86_64" ]
machine=x64
fi
os=$os.$machine
echo $os
exename=`basename $0`
dirname=`dirname $0`
if [ -x $dirname\/gcc.$os.exe.release/$exename ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment