summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-06-19 09:21:49 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-06-19 09:21:49 (GMT)
commit62afc432fa7ba9ac06409e27676cd41480dcf3b8 (patch)
treeade44bdb1e4724f50e25e68edc011bd958cec476
parentaa1fd086d1453685348ada941d38891c42b902da (diff)
downloadswift-62afc432fa7ba9ac06409e27676cd41480dcf3b8.zip
swift-62afc432fa7ba9ac06409e27676cd41480dcf3b8.tar.bz2
Fixed conditional in package script.
-rwxr-xr-xSwift/Packaging/Debian/package.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Packaging/Debian/package.sh b/Swift/Packaging/Debian/package.sh
index 1890069..5f7d911 100755
--- a/Swift/Packaging/Debian/package.sh
+++ b/Swift/Packaging/Debian/package.sh
@@ -38,7 +38,7 @@ tar czf swift-im_$DEBIAN_VERSION.orig.tar.gz --exclude=$DIRNAME/.git $DIRNAME
# Detect dependencies
WEBKIT_DEPENDENCY=", libqtwebkit-dev (>= 2.0.0)"
DISTRIBUTION=`lsb_release -s -i`-`lsb_release -s -c`
-if [ "$DISTRIBUTION" == "Debian-squeeze" -o "$DISTRIBUTION" == "Ubuntu-lucid" ]; then
+if [ "$DISTRIBUTION" = "Debian-squeeze" -o "$DISTRIBUTION" = "Ubuntu-lucid" ]; then
WEBKIT_DEPENDENCY=""
fi