Skip to content
This repository has been archived by the owner on Oct 18, 2020. It is now read-only.

Commit

Permalink
little correction
Browse files Browse the repository at this point in the history
  • Loading branch information
szorfein committed Apr 24, 2020
1 parent 7956080 commit 45bd271
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions hooks/busybox
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash

###############################################################
# Build Static Busybox
Expand Down Expand Up @@ -39,7 +39,7 @@ elif ldd $ECLODIR_STATIC/busybox >/dev/null 2>&1 ; then
fi

cp -a "$ECLODIR_STATIC"/busybox "$BUSYBOX_BIN"
BUSY_BIN=$(type $BUSYBOX_BIN)
BUSY_BIN=$(type -p $BUSYBOX_BIN)
BUSY_APPS=/tmp/busybox-apps
$BUSY_BIN --list-full > $BUSY_APPS

Expand Down
2 changes: 1 addition & 1 deletion hooks/udev
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[ -x /lib/udev/udevd ] && UDEVD=/lib/udev/udevd
[ -x /lib/systemd/systemd-udevd ] && UDEVD=/lib/systemd/systemd-udevd

[ -z "$UDEVD" ] || die "Cannot find udevd nor systemd-udevd"
[ -n "$UDEVD" ] || die "Cannot find udevd nor systemd-udevd"

mkdir -p etc/udev lib/udev/rules.d lib/systemd

Expand Down

0 comments on commit 45bd271

Please sign in to comment.