aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-12-30 23:08:01 +0300
committerCem Keylan <cem@ckyln.com>2020-12-30 23:08:01 +0300
commit86d487c43e4324f48ab29f23b808be71708da4f2 (patch)
tree35d7cf2c2a1fd19b40b50d9e095f771c052374b2 /core
parent9775446f61bf9c05d077a915476ac79b81aff083 (diff)
parent1653cdf900cfaab2bd8fc7ac83794187850d707f (diff)
downloadrepository-86d487c43e4324f48ab29f23b808be71708da4f2.tar.gz
Merge branch 'master' into helpers
Diffstat (limited to 'core')
-rwxr-xr-xcore/make/build12
1 files changed, 10 insertions, 2 deletions
diff --git a/core/make/build b/core/make/build
index bbd53ee2..265eeb2d 100755
--- a/core/make/build
+++ b/core/make/build
@@ -3,7 +3,15 @@
export LDFLAGS="$LDFLAGS -static"
./configure \
- --prefix=/usr
+ --prefix=/usr \
+ --disable-nls \
+ --without-guile \
+ "$(cpt l --check make -- '' --disable-dependency-tracking)"
-make
+if command -v make >/dev/null; then
+ make
+else
+ ./build.sh
+ PATH=$PWD:$PATH
+fi
make DESTDIR="$1" install