makedeb
Open Surge is a fun 2D retro platformer inspired by Sonic games, and a game creation system (bullseye version).
Click here to go back to the commit logs for opensurge-bullseye.
Hash: 1d7ddcbbeaf4cc806d31f6556dc04d981ed56501
Message: Do not fail if build directory exists
diff --git a/PKGBUILD b/PKGBUILD
index 9fcf3fa..6aa6cf2 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