summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosé Rebelo2021-05-05 23:46:57 +0100
committerJosé Rebelo2021-05-05 23:46:57 +0100
commit1d7ddcbbeaf4cc806d31f6556dc04d981ed56501 (patch)
tree13306ebc69434d3feb75028e5232b74bd7a77be7
parentfaad3c2a4a02d4d7df0d4c1ae34e9e09a08a889b (diff)
downloadaur-opensurge.tar.gz
Do not fail if build directory exists
-rw-r--r--PKGBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 9fcf3fa5c862..6aa6cf211b4a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -15,7 +15,7 @@ sha256sums=('27764a82d97b54026c90044fbc31ea4a61f7836568020b869e63376322a155af')
build() {
cd $pkgname-$pkgver
- mkdir build && cd build
+ mkdir -p build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DGAME_BINDIR=/usr/bin ..
make