aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2016-04-20 00:47:05 -0500
committerRob Landley <rob@landley.net>2016-04-20 00:47:05 -0500
commita59951489ecf4375f12821c2a270b497ec9748e0 (patch)
tree631a993c1dd69208b48630d62bcd6051d2c3f4f8 /scripts
parent529d5db29a32db565d2ee0aeac133e47ec045e12 (diff)
downloadtoybox-a59951489ecf4375f12821c2a270b497ec9748e0.tar.gz
Replace list_working with just list, "make list list_pending" shows combined list.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/genconfig.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/genconfig.sh b/scripts/genconfig.sh
index e9bb5141..e4c2aad7 100755
--- a/scripts/genconfig.sh
+++ b/scripts/genconfig.sh
@@ -148,8 +148,7 @@ do
WORKING="$WORKING $NAME"
done &&
echo -e "clean::\n\trm -f $WORKING $PENDING" &&
-echo -e "list:\n\t@echo $(echo $WORKING $PENDING | tr ' ' '\n' | sort | xargs)" &&
-echo -e "list_working:\n\t@echo $(echo $WORKING | tr ' ' '\n' | sort | xargs)" &&
+echo -e "list:\n\t@echo $(echo $WORKING | tr ' ' '\n' | sort | xargs)" &&
echo -e "list_pending:\n\t@echo $(echo $PENDING | tr ' ' '\n' | sort | xargs)" &&
echo -e ".PHONY: $WORKING $PENDING" | sed 's/ \([^ ]\)/ test_\1/g'
) > .singlemake