summaryrefslogtreecommitdiffstats
path: root/source/a/eudev
diff options
context:
space:
mode:
Diffstat (limited to 'source/a/eudev')
-rwxr-xr-xsource/a/eudev/config/rc.d/rc.udev.new4
-rwxr-xr-xsource/a/eudev/eudev.SlackBuild2
2 files changed, 3 insertions, 3 deletions
diff --git a/source/a/eudev/config/rc.d/rc.udev.new b/source/a/eudev/config/rc.d/rc.udev.new
index 1b4e3fe9f..1db93c726 100755
--- a/source/a/eudev/config/rc.d/rc.udev.new
+++ b/source/a/eudev/config/rc.d/rc.udev.new
@@ -95,10 +95,10 @@ case "$1" in
if ! /sbin/pidof udevd 1>/dev/null 2>/dev/null; then # start udevd
echo "Creating static nodes in /dev."
kmod static-nodes -f tmpfiles --output /run/static-nodes
- grep "^d\ " /run/static-nodes | while read line ; do
+ grep "^d " /run/static-nodes | while read line ; do
mkdir -p -m $(echo $line | cut -f 3 -d ' ') $(echo $line | cut -f 2 -d ' ')
done
- grep -v "^d\ " /run/static-nodes | while read line ; do
+ grep -v "^d " /run/static-nodes | while read line ; do
mknod -m $(echo $line | cut -f 3 -d ' ') \
$(echo $line | cut -f 2 -d ' ') \
$(echo $line | cut -b1 ) \
diff --git a/source/a/eudev/eudev.SlackBuild b/source/a/eudev/eudev.SlackBuild
index 89f1a708e..a5451b194 100755
--- a/source/a/eudev/eudev.SlackBuild
+++ b/source/a/eudev/eudev.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=eudev
VERSION=${VERSION:-$(echo eudev-*.tar.* | cut -d - -f 2 | rev | cut -f 3- -d . | rev)}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}