summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVon Random <von@vdrandom.org>2019-01-09 13:40:15 +0300
committerVon Random <von@vdrandom.org>2019-01-09 13:40:15 +0300
commit93798d398e3c3ad9139ee410a041d642a371bb28 (patch)
treea511d3073e4a0567d6c2728e8f587331a7689781
parent67480edd292637fc0880f825d21c935228710391 (diff)
set -x for makest as well as proper default make action
-rwxr-xr-xmakest3
1 files changed, 2 insertions, 1 deletions
diff --git a/makest b/makest
index cfd8ec6..126a0d7 100755
--- a/makest
+++ b/makest
@@ -1,4 +1,5 @@
#!/usr/bin/env zsh
+set -x
ST_REPO=https://git.suckless.org/st
ST_SRC=$PWD/st
ST_CFG=$PWD/config.h
@@ -28,4 +29,4 @@ for patch in $PATCHLIST; do
patch -p1 -i ../$patch
done
-make $MAKE_OPTS ${*-install}
+make $MAKE_OPTS ${*:-install}