diff options
| author | Arnout Vandecappelle <arnout@mind.be> | 2017-07-05 13:14:26 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-05 15:23:13 +0200 |
| commit | 31be2ec220c8ad6e1f98d9fb705034cc288de597 (patch) | |
| tree | 4294b956d2fd1c5fbb13c9bfea52bc5d1fc74ed7 /board/technologic | |
| parent | b2ea6eaf23202c92063931bba6fe8f5506e90d52 (diff) | |
| download | buildroot-31be2ec220c8ad6e1f98d9fb705034cc288de597.tar.gz buildroot-31be2ec220c8ad6e1f98d9fb705034cc288de597.zip | |
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>
Diffstat (limited to 'board/technologic')
| -rwxr-xr-x | board/technologic/ts4800/post-image.sh | 2 | ||||
| -rwxr-xr-x | board/technologic/ts4900/post-image.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/technologic/ts4800/post-image.sh b/board/technologic/ts4800/post-image.sh index 167dea812c..cc8e5da352 100755 --- a/board/technologic/ts4800/post-image.sh +++ b/board/technologic/ts4800/post-image.sh @@ -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} \ diff --git a/board/technologic/ts4900/post-image.sh b/board/technologic/ts4900/post-image.sh index 1e90cded72..cb966d883b 100755 --- a/board/technologic/ts4900/post-image.sh +++ b/board/technologic/ts4900/post-image.sh @@ -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 \ |

