aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreschnett <eschnett@ba58616d-3abc-4c77-8745-3ba8ad4a582f>2013-04-24 01:17:36 +0000
committereschnett <eschnett@ba58616d-3abc-4c77-8745-3ba8ad4a582f>2013-04-24 01:17:36 +0000
commitabf0d844c41619be5e02e2dfa0cc07414f609473 (patch)
tree6516bbf13e323d47c6c23e568c2741f2f8abd3c1
parentccbb717974bfb4edc4b480d38aac5bc04af69fea (diff)
Correct syntax error in script file
git-svn-id: http://svn.cactuscode.org/projects/ExternalLibraries/libjpeg/trunk@31 ba58616d-3abc-4c77-8745-3ba8ad4a582f
-rwxr-xr-xconfigure.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.sh b/configure.sh
index 4d1b4e1..0d35c8b 100755
--- a/configure.sh
+++ b/configure.sh
@@ -16,7 +16,7 @@ set -e # Abort on errors
# Search
################################################################################
-if [ -z "${LIBJPEG_DIR}" ] then
+if [ -z "${LIBJPEG_DIR}" ]; then
echo "BEGIN MESSAGE"
echo "LIBJPEG selected, but LIBJPEG_DIR not set. Checking some places..."
echo "END MESSAGE"
@@ -65,6 +65,7 @@ if [ -z "${LIBJPEG_DIR}" ] then
fi
+
################################################################################
# Build
################################################################################