mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 12:37:00 +01:00
Fix string comparison in Debian build script (#2409)
This commit is contained in:
parent
4efdb7208f
commit
1d34947ee9
|
@ -8,7 +8,7 @@ if [ -z "${ARCH}" ]; then
|
||||||
ARCH="$(dpkg --print-architecture)"
|
ARCH="$(dpkg --print-architecture)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${ARCH}" != "$(dpkg --print-architecture)" ]; then
|
if [[ "${ARCH}" != "$(dpkg --print-architecture)" ]]; then
|
||||||
echo "${ARCH} != $(dpkg --print-architecture), cross-compiling!"
|
echo "${ARCH} != $(dpkg --print-architecture), cross-compiling!"
|
||||||
export PKG_CONFIG_ALLOW_CROSS=1
|
export PKG_CONFIG_ALLOW_CROSS=1
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue