diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2014-10-03 18:58:59 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2014-10-03 23:45:26 +0000 |
commit | ab72068565e4417799843d2445da39d9e98efffd (patch) | |
tree | 7e7faaa0c70b1b4969773d8edeaea5e63574dc68 /contrib/gitian-descriptors/qt-linux.yml | |
parent | b77b4eda8db4e7ebd7762d8543c713c15b207e90 (diff) |
Bugfix: Replace bashisms with standard sh in gitian descriptors
Diffstat (limited to 'contrib/gitian-descriptors/qt-linux.yml')
-rw-r--r-- | contrib/gitian-descriptors/qt-linux.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/gitian-descriptors/qt-linux.yml b/contrib/gitian-descriptors/qt-linux.yml index b163b4bb8c..fd86b4df1d 100644 --- a/contrib/gitian-descriptors/qt-linux.yml +++ b/contrib/gitian-descriptors/qt-linux.yml @@ -18,7 +18,7 @@ files: script: | export FAKETIME=$REFERENCE_DATETIME export TZ=UTC - if [ "$GBUILD_BITS" == "32" ]; then + if [ "x$GBUILD_BITS" = "x32" ]; then ARCH='i386-linux-gnu' else ARCH='x86_64-linux-gnu' @@ -74,7 +74,7 @@ script: | #endif ' > $QCONFIG - if [ "$GBUILD_BITS" == "32" ]; then + if [ "x$GBUILD_BITS" = "x32" ]; then echo ' /* Machine byte-order */ #define Q_BIG_ENDIAN 4321 |