diff options
author | don bright <hugh.m.bright@gmail.com> | 2013-03-03 23:58:25 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2013-03-03 23:58:25 (GMT) |
commit | 2d64fbcf3d4ad5be3c66d782cffe3eae49d68322 (patch) | |
tree | 2494a35e93b44726d36eda1ee39d52d4c0d3b635 /scripts | |
parent | c92d9bde928339838e0ecd6f5a7b23dbdf874f75 (diff) |
update man page. change == in shell script to =
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/uni-build-dependencies.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/uni-build-dependencies.sh b/scripts/uni-build-dependencies.sh index b5937ed..b793e9b 100755 --- a/scripts/uni-build-dependencies.sh +++ b/scripts/uni-build-dependencies.sh @@ -508,7 +508,7 @@ fi # Singly build certain tools or libraries if [ $1 ]; then - if [ $1 == "git" ]; then + if [ $1 = "git" ]; then build_git 1.7.10.3 exit $? fi @@ -520,12 +520,12 @@ if [ $1 ]; then build_opencsg 1.3.2 exit $? fi - if [ $1 == "qt4" ]; then + if [ $1 = "qt4" ]; then # such a huge build, put here by itself build_qt4 4.8.4 exit $? fi - if [ $1 == "glu" ]; then + if [ $1 = "glu" ]; then # Mesa and GLU split in late 2012, so it's not on some systems build_glu 9.0.0 exit $? |