diff options
| author | Luke Dashjr <[email protected]> | 2014-10-03 18:58:59 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2014-10-03 23:45:26 +0000 |
| commit | ab72068565e4417799843d2445da39d9e98efffd (patch) | |
| tree | 7e7faaa0c70b1b4969773d8edeaea5e63574dc68 /contrib/gitian-descriptors/qt-linux.yml | |
| parent | Bugfix: Replace bashisms with standard sh to fix build on non-BASH systems (diff) | |
| download | discoin-ab72068565e4417799843d2445da39d9e98efffd.tar.xz discoin-ab72068565e4417799843d2445da39d9e98efffd.zip | |
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 b163b4bb8..fd86b4df1 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 |