diff options
author | Georgi Chorbadzhiyski <gf@unixsol.org> | 2012-03-04 01:24:06 -0600 |
---|---|---|
committer | Georgi Chorbadzhiyski <gf@unixsol.org> | 2012-03-04 01:24:06 -0600 |
commit | 2c27fcfa8d1509567d39851dad8f847c70bcdfb7 (patch) | |
tree | 743de6bed12d0e991eb1d89c0e2160082907a24b /scripts | |
parent | 405e73ce65cf048c49c6e57a62f60c3f9c83faf8 (diff) | |
download | toybox-2c27fcfa8d1509567d39851dad8f847c70bcdfb7.tar.gz |
Fix build on slackware-current.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/genconfig.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/genconfig.sh b/scripts/genconfig.sh index 449ee1ea..f6779548 100755 --- a/scripts/genconfig.sh +++ b/scripts/genconfig.sh @@ -14,7 +14,7 @@ probeconfig() echo -e "# container support\nconfig TOYBOX_CONTAINER\n\tbool" || return 1 ${CROSS_COMPILE}${CC} -c -xc -o /dev/null - 2>/dev/null << EOF - #include <sched.h> + #include <linux/sched.h> int x=CLONE_NEWNS|CLONE_NEWUTS|CLONE_NEWIPC|CLONE_NEWNET; EOF [ $? -eq 0 ] && DEFAULT=y || DEFAULT=n |