From 77381506e9ed02f0bd7e54bec5783796bc803ba0 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 9 Jan 2023 15:34:54 -0600 Subject: [PATCH] Don't force "make tests" or scripts/tests.sh to rebuild every time. --- Makefile | 2 +- scripts/install.sh | 1 - scripts/test.sh | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 2271f2e3..f51cd48c 100644 --- a/Makefile +++ b/Makefile @@ -73,7 +73,7 @@ distclean: clean root_clean @rm -f toybox* .config* .singlemake @echo removed .config -tests: +tests: toybox scripts/test.sh root: diff --git a/scripts/install.sh b/scripts/install.sh index 75619a9d..38d9dcec 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -31,7 +31,6 @@ done echo "Compile instlist..." -NOBUILD=1 scripts/make.sh $DEBUG $HOSTCC -I . scripts/install.c -o "$UNSTRIPPED"/instlist || exit 1 COMMANDS="$("$UNSTRIPPED"/instlist $LONG_PATH)" diff --git a/scripts/test.sh b/scripts/test.sh index bb778b36..c29a9aa9 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -18,7 +18,6 @@ then then scripts/single.sh "$@" || exit 1 else - scripts/make.sh && scripts/install.sh --symlink --force || exit 1 fi fi -- 2.39.2