Fixed issue with kernfs section trying to chroot
This commit is contained in:
parent
c08d23b564
commit
19364871b0
1 changed files with 3 additions and 1 deletions
4
jhalfs
4
jhalfs
|
@ -445,7 +445,9 @@ build_Makefile() {
|
|||
|
||||
# Drop in the name of the target on a new line, and the previous target
|
||||
# as a dependency.
|
||||
if ! echo $i | grep -q "chroot" ; then
|
||||
if echo $i | grep -q "chroot" ; then
|
||||
continue
|
||||
else
|
||||
echo -e "\n$i: $PREV" >> $MKFILE.tmp
|
||||
fi
|
||||
|
||||
|
|
Reference in a new issue