diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-06-19 09:22:06 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-06-19 09:22:06 (GMT) |
commit | d4a48f83e856b380f6bf19eb19ea0b80ceef20ab (patch) | |
tree | 9b1a9c77d53e0ec2de61b0bc62cbfcd00013843c /Swift/Packaging/Debian/package.sh | |
parent | 6eabee840343d99d92dd4c2f627cb52ff3b97886 (diff) | |
parent | 62afc432fa7ba9ac06409e27676cd41480dcf3b8 (diff) | |
download | swift-contrib-d4a48f83e856b380f6bf19eb19ea0b80ceef20ab.zip swift-contrib-d4a48f83e856b380f6bf19eb19ea0b80ceef20ab.tar.bz2 |
Merge branch 'swift-1.x'
* swift-1.x:
Fixed conditional in package script.
Diffstat (limited to 'Swift/Packaging/Debian/package.sh')
-rwxr-xr-x | Swift/Packaging/Debian/package.sh | 2 |
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 |