diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2018-02-27 17:09:23 +0100 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2018-02-27 17:09:23 +0100 |
commit | 4afccbb34c06293ac48dd652959cd52d978c2b63 (patch) | |
tree | 3c09b9987f207ee7592c09548ccd2be8dfe99e05 | |
parent | 21a376ecd52874d4abb6ea31b4f3b3267023ac64 (diff) |
Disable fakeroot with opkg fixes error message
-rwxr-xr-x | build_rootfs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_rootfs.sh b/build_rootfs.sh index aa93849..3ad3277 100755 --- a/build_rootfs.sh +++ b/build_rootfs.sh @@ -18,7 +18,7 @@ instroot=$dir/rootfs cache=dl/packages/$ARCH/$SUBARCH test -e $cache || mkdir -p $cache -OPKG="$SDK/staging_dir/host/bin/opkg -o $instroot --cache $cache" +OPKG="env LD_PRELOAD= $SDK/staging_dir/host/bin/opkg -o $instroot --cache $cache" export IPKG_INSTROOT=$instroot unpack() { |