summaryrefslogtreecommitdiffstats
path: root/Swift
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-06-19 09:22:06 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-06-19 09:22:06 (GMT)
commitd4a48f83e856b380f6bf19eb19ea0b80ceef20ab (patch)
tree9b1a9c77d53e0ec2de61b0bc62cbfcd00013843c /Swift
parent6eabee840343d99d92dd4c2f627cb52ff3b97886 (diff)
parent62afc432fa7ba9ac06409e27676cd41480dcf3b8 (diff)
downloadswift-d4a48f83e856b380f6bf19eb19ea0b80ceef20ab.zip
swift-d4a48f83e856b380f6bf19eb19ea0b80ceef20ab.tar.bz2
Merge branch 'swift-1.x'
* swift-1.x: Fixed conditional in package script.
Diffstat (limited to 'Swift')
-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