summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/dobin2
-rwxr-xr-xbin/dosbin2
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/dobin b/bin/dobin
index 634f27731..103c1c91c 100755
--- a/bin/dobin
+++ b/bin/dobin
@@ -16,7 +16,7 @@ ret=0
for x in "$@" ; do
if [[ -e ${x} ]] ; then
- install -m0755 -o root -g 0 "${x}" "${D}${DESTTREE}/bin"
+ install -m0755 -o 0 -g 0 "${x}" "${D}${DESTTREE}/bin"
else
echo "!!! ${0##*/}: ${x} does not exist" 1>&2
false
diff --git a/bin/dosbin b/bin/dosbin
index 426b93190..cdd247cbd 100755
--- a/bin/dosbin
+++ b/bin/dosbin
@@ -16,7 +16,7 @@ ret=0
for x in "$@" ; do
if [[ -e ${x} ]] ; then
- install -m0755 -o root -g 0 "${x}" "${D}${DESTTREE}/sbin"
+ install -m0755 -o 0 -g 0 "${x}" "${D}${DESTTREE}/sbin"
else
echo "!!! ${0##*/}: ${x} does not exist" 1>&2
false