bugfix in portability code

This commit is contained in:
Volker Grabsch 2007-06-23 20:16:14 +02:00
parent ac2a7040cf
commit 7edea74c36
1 changed files with 9 additions and 7 deletions

View File

@ -43,13 +43,6 @@ set -ex
#---
#---
# Portability
#---
command -v gmake || alias gmake=make
#---
# Configuration
#---
@ -92,6 +85,15 @@ VERSION_libgeotiff=1.2.3
VERSION_gdal=1.4.1
#---
# Portability
#---
if ! command -v gmake; then
alias gmake=make
fi
#---
# Main
#---