mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
dtc: fix host install path
currenly dtc package install everything in $HOME when build for the :host target. It's not the intended behavior. Define a makeinstall_host function that will copy the binary in the proper :host path for dtc. Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
This commit is contained in:
@@ -36,3 +36,8 @@ makeinstall_target() {
|
||||
mkdir -p $INSTALL/usr/bin
|
||||
cp -P $ROOT/$PKG_BUILD/dtc $INSTALL/usr/bin
|
||||
}
|
||||
|
||||
makeinstall_host() {
|
||||
mkdir -p $INSTALL/usr/bin
|
||||
cp -P $ROOT/$PKG_BUILD/dtc $INSTALL/usr/bin
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user