aboutsummaryrefslogtreecommitdiff
path: root/miscutils/make.c
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2024-10-23 12:49:17 +0100
committerRon Yorston <rmy@pobox.com>2024-10-23 12:49:17 +0100
commitb4c70222a200314ce3805e96f7de94ceb57c79ea (patch)
tree0c574a9b750dd6ffc457e05b151e15bf519a1a1b /miscutils/make.c
parentb2ad30bab23920704a34dc39b16db6fd5d91ea1e (diff)
downloadbusybox-w32-b4c70222a200314ce3805e96f7de94ceb57c79ea.tar.gz
busybox-w32-b4c70222a200314ce3805e96f7de94ceb57c79ea.tar.bz2
busybox-w32-b4c70222a200314ce3805e96f7de94ceb57c79ea.zip
make: .WAIT shoudn't have prerequisites
Commit f0dea6674 (make: enforce restrictions on prerequisites/ commands) set the flags for .WAIT incorrectly: in POSIX mode it shouldn't have prerequisites.
Diffstat (limited to 'miscutils/make.c')
-rw-r--r--miscutils/make.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/make.c b/miscutils/make.c
index bf1cfe226..7316408bf 100644
--- a/miscutils/make.c
+++ b/miscutils/make.c
@@ -1850,7 +1850,7 @@ target_type(char *s)
1850 T_SPECIAL, 1850 T_SPECIAL,
1851 T_SPECIAL, 1851 T_SPECIAL,
1852 T_SPECIAL | T_NOPREREQ, 1852 T_SPECIAL | T_NOPREREQ,
1853 T_SPECIAL, 1853 T_SPECIAL | T_NOPREREQ,
1854 T_SPECIAL, 1854 T_SPECIAL,
1855 }; 1855 };
1856 1856