From 24c0aae34e5229638b3fabf02f9f2ee736239b4a Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 1 Jul 2019 14:32:06 +0200 Subject: [PATCH] Build: Remove Userland/qs if we see one lying around. Userland/qs was moved to Applications/QuickShow, but some people still have old built binaries lying around in their Userland/ directories and the build system complains about this. Here goes a silly temporary hack to just get rid of them. --- Kernel/build-root-filesystem.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Kernel/build-root-filesystem.sh b/Kernel/build-root-filesystem.sh index 2ceb29e49b..91e65c0660 100755 --- a/Kernel/build-root-filesystem.sh +++ b/Kernel/build-root-filesystem.sh @@ -2,6 +2,9 @@ set -e +# HACK: Get rid of old "qs" binaries still lying around from before it was renamed. +rm -f ../Userland/qs + die() { echo "die: $@" exit 1