diff options
author | 2002-04-30 18:19:12 +0000 | |
---|---|---|
committer | 2002-04-30 18:19:12 +0000 | |
commit | 954e741fbc038753adb94d28ad2ea7b4141b9748 (patch) | |
tree | 7e762e774ca555c26da0dfe41cffde260e9869a9 | |
parent | Parital sync to i386 common/Makefile.inc, enough to build ramdisk at least. (diff) | |
download | wireguard-openbsd-954e741fbc038753adb94d28ad2ea7b4141b9748.tar.xz wireguard-openbsd-954e741fbc038753adb94d28ad2ea7b4141b9748.zip |
Swap sbin/fsck and sbin/fsck_ffs in the LINK line. Now that we use
makeconf.awk, order matters here. With the previous order only the
fsck wrapper was included and fsck_ffs was linked to it.
This resulted in fsck fork bombing until the proc table was full.
-rw-r--r-- | distrib/i386/common/list | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/i386/common/list b/distrib/i386/common/list index fbd9430d28d..5994b34553e 100644 --- a/distrib/i386/common/list +++ b/distrib/i386/common/list @@ -1,4 +1,4 @@ -# $OpenBSD: list,v 1.5 2002/04/30 03:23:57 deraadt Exp $ +# $OpenBSD: list,v 1.6 2002/04/30 18:19:12 millert Exp $ SRCDIRS distrib/special SRCDIRS usr.bin bin sbin usr.sbin gnu/usr.bin @@ -27,7 +27,7 @@ LINK instbin sbin/disklabel LINK instbin sbin/dhclient LINK instbin sbin/fdisk LINK instbin sbin/dmesg -LINK instbin sbin/fsck sbin/fsck_ffs +LINK instbin sbin/fsck_ffs sbin/fsck LINK instbin sbin/reboot sbin/halt LINK instbin sbin/ifconfig LINK instbin sbin/init |