mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
boards: replace $HOST_DIR/usr/ with $HOST_DIR/ in scripts
Since things are no longer installed in $(HOST_DIR)/usr, the callers should also not refer to it. This is a mechanical change with git grep -l 'HOST_DIR}\?/usr/' board | xargs sed -i 's%\(HOST_DIR}\?\)/usr/%\1/%g' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
b2ea6eaf23
commit
31be2ec220
@@ -9,7 +9,7 @@ GENIMAGE_TMP=${BUILD_DIR}/.genimage_tmp
|
||||
|
||||
rm -rf ${GENIMAGE_TMP}
|
||||
|
||||
${HOST_DIR}/usr/bin/genimage \
|
||||
${HOST_DIR}/bin/genimage \
|
||||
--config ${GENIMAGE_CFG} \
|
||||
--rootpath ${TARGET_DIR} \
|
||||
--tmppath ${GENIMAGE_TMP} \
|
||||
|
||||
@@ -9,7 +9,7 @@ GENIMAGE_TMP=$BUILD_DIR/.genimage_tmp
|
||||
|
||||
rm -rf $GENIMAGE_TMP
|
||||
|
||||
${HOST_DIR}/usr/bin/genimage \
|
||||
${HOST_DIR}/bin/genimage \
|
||||
--config ${GENIMAGE_CFG} \
|
||||
--rootpath $TARGET_DIR \
|
||||
--tmppath $GENIMAGE_TMP \
|
||||
|
||||
Reference in New Issue
Block a user