diff options
author | Wolfgang Grandegger <wg@grandegger.com> | 2017-07-22 13:15:42 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-22 14:38:43 +0200 |
commit | 0bc81f528bcc136b65d73e60a05993526704c0b6 (patch) | |
tree | c99999f8f4f06ea9182ee0af734ad10d1725f0ea /support/scripts | |
parent | 17dd0d49da96e8043ed244a480de0a48b0b116fd (diff) | |
download | buildroot-0bc81f528bcc136b65d73e60a05993526704c0b6.tar.gz buildroot-0bc81f528bcc136b65d73e60a05993526704c0b6.zip |
support/scripts/fix-rpath: typo fix and unneeded "; " removed
Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'support/scripts')
-rwxr-xr-x | support/scripts/fix-rpath | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/scripts/fix-rpath b/support/scripts/fix-rpath index f92e6013da..15705a3b0d 100755 --- a/support/scripts/fix-rpath +++ b/support/scripts/fix-rpath @@ -27,7 +27,7 @@ Description: Sanitization behaves the same whatever the kind of the processed tree, but the resulting RPATH differs. The rpath sanitization is done using - "patchelf --make-rpath-relazive". + "patchelf --make-rpath-relative". Arguments: @@ -81,7 +81,7 @@ main() { find_args+=( "-path" "${TOOLCHAIN_EXTERNAL_DOWNLOAD_INSTALL_DIR}" "-prune" "-o" ) for excludepath in ${HOST_EXCLUDEPATHS}; do - find_args+=( "-path" "${HOST_DIR}""${excludepath}" "-prune" "-o" ); + find_args+=( "-path" "${HOST_DIR}""${excludepath}" "-prune" "-o" ) done # do not process the patchelf binary but a copy to work-around "file in use" |