Add support for rescue.ad.<cpu>.shl which appears to have been missed
This commit is contained in:
parent
dbc3f17967
commit
9c51e79187
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: sets.subr,v 1.9 2003/12/29 03:13:25 lukem Exp $
|
||||
# $NetBSD: sets.subr,v 1.10 2003/12/29 20:54:58 jmc Exp $
|
||||
#
|
||||
|
||||
#
|
||||
|
@ -83,7 +83,7 @@ fi
|
|||
# In each file, a record consists of a path and a System Package name,
|
||||
# separated by whitespace. E.g.,
|
||||
#
|
||||
# # $NetBSD: sets.subr,v 1.9 2003/12/29 03:13:25 lukem Exp $
|
||||
# # $NetBSD: sets.subr,v 1.10 2003/12/29 20:54:58 jmc Exp $
|
||||
# . base-sys-root [keyword[,...]]
|
||||
# ./altroot base-sys-root
|
||||
# ./bin base-sys-root
|
||||
|
@ -189,6 +189,7 @@ list_set_files()
|
|||
# rescue.${machine}
|
||||
# rescue.ad.${machine_arch}
|
||||
# (or) rescue.ad.${machine_cpu}
|
||||
# rescue.ad.${machine_cpu}.shl
|
||||
#
|
||||
# Environment:
|
||||
# shlib
|
||||
|
@ -276,6 +277,10 @@ list_set_lists()
|
|||
elif [ -f $setdir/rescue.ad.${machine_cpu} ]; then
|
||||
echo $setdir/rescue.ad.${machine_cpu}
|
||||
fi
|
||||
if [ "$shlib" != "no" -a \
|
||||
-f $setdir/rescue.ad.${machine_cpu}.shl ]; then
|
||||
echo $setdir/rescue.ad.${machine_cpu}.shl
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue