1
0
mirror of synced 2026-01-24 02:57:32 +00:00

2006-05-26 15:31:25 by radu

Do not run MAKEDEV if the system is using udev
This commit is contained in:
radu 2006-05-26 15:31:25 +00:00
parent ebd526bb0d
commit 2b23f342d5

View File

@ -11,6 +11,14 @@
prefix=$1
dist=$2
#
# Exit if the system uses udev
#
if [[ -d /dev/.udev ]]; then
exit
fi
#
# This routine sets up /dev on a Debian GNU/Linux system.