summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2005-07-08 19:23:27 +0000
committerEric S. Raymond <esr@thyrsus.com>2005-07-08 19:23:27 +0000
commitf4ea08286cf514a86f643a2fdb1c315fa6454468 (patch)
treec676ab1e5c98c3eec5d35893dd0241f455a799c6 /autogen.sh
parente357ace3e57bffd3f9562cc1ff141fe3637c3832 (diff)
downloadgpsd-f4ea08286cf514a86f643a2fdb1c315fa6454468.tar.gz
Try to fix Oleg's automake problem. More doc fixes.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/autogen.sh b/autogen.sh
index 3e6ee86c..4505f540 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -19,15 +19,15 @@ AM_V1=`echo $AM_VERSION | awk '{print $1}'`
AM_V2=`echo $AM_VERSION | awk '{print $2}'`
AM_V3=`echo $AM_VERSION | awk '{print $3}'`
-if [ $AM_1 -gt $AM_V1 ]; then
+if [ "$AM_1" -gt "$AM_V1" ]; then
AM_ERROR=1
else
- if [ $AM_1 -eq $AM_V1 ]; then
- if [ $AM_2 -gt $AM_V2 ]; then
+ if [ "$AM_1" -eq "$AM_V1" ]; then
+ if [ "$AM_2" -gt "$AM_V2" ]; then
AM_ERROR=1
else
- if [ $AM_2 -eq $AM_V2 ]; then
- if [ $AM_3 -gt $AM_V3 ]; then
+ if [ "$AM_2" -eq "$AM_V2" ]; then
+ if [ "$AM_3" -gt "$AM_V3" ]; then
AM_ERROR=1
fi
fi