summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigs/profile/build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/profile/build.sh b/configs/profile/build.sh
index ca5d19a..cd42d30 100755
--- a/configs/profile/build.sh
+++ b/configs/profile/build.sh
@@ -464,8 +464,8 @@ elif [[ ${EUID} -ne 0 ]]; then
elif ! pacman --version | grep libalpm > /dev/null; then
LOG_ERROR "This script needs the 'pacman' package manager to be installed."
exit 1
-elif ! pacman -Qi parabolaiso-data > /dev/null; then
- LOG_ERROR "This script needs the 'parabolaiso-data' package to be installed."
+elif [[ "${archs}" =~ 'x86_64' ]] && ! pacman -Qi parabolaiso-data > /dev/null; then
+ LOG_ERROR "x86_64 ISOs require the 'parabolaiso-data' package to be installed."
exit 1
elif ! echo "${VALID_INITS[@]}" | tr " " "\n" | grep -E "^${iso_init}$" > /dev/null || \
! echo "${VALID_WMDES[@]}" | tr " " "\n" | grep -E "^${iso_wmde}$" > /dev/null ; then