diff options
author | Leah Rowe <info@minifree.org> | 2017-06-23 15:07:44 +0000 |
---|---|---|
committer | Gogs <gogitservice@gmail.com> | 2017-06-23 15:07:44 +0000 |
commit | 363455950f9c351b0a87a31fb5641a635bd352a7 (patch) | |
tree | 430ac9d4cad3058b5ed6703fb27e6bd5c66b21bd /projects/crossgcc/crossgcc-helper | |
parent | b2e04a9535832bc682ca69f34b13583ac74d50dc (diff) | |
parent | 46c6ca3b9ee3e545a41b3b0f488885b20a1c65b5 (diff) | |
download | librebootfr-363455950f9c351b0a87a31fb5641a635bd352a7.tar.gz librebootfr-363455950f9c351b0a87a31fb5641a635bd352a7.zip |
Merge branch 'printf-changes' of kragle/libreboot into master
Diffstat (limited to 'projects/crossgcc/crossgcc-helper')
-rwxr-xr-x | projects/crossgcc/crossgcc-helper | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/projects/crossgcc/crossgcc-helper b/projects/crossgcc/crossgcc-helper index b4979f89..a3d11ddf 100755 --- a/projects/crossgcc/crossgcc-helper +++ b/projects/crossgcc/crossgcc-helper @@ -20,7 +20,7 @@ crossgcc_tarballs() { local install_path="$sources_path/util/crossgcc/tarballs/" local tarballs=$( ls "$sources_path/util/crossgcc/sum" | sed "s/.cksum$//" ) - echo "$tarballs" + env printf '%s\n' "$tarballs" } crossgcc_tarball_sources_path() { @@ -28,7 +28,7 @@ crossgcc_tarball_sources_path() { local tarball_sources_path="$root/$SOURCES/$tarball" - echo "$tarball_sources_path" + env printf '%s\n' "$tarball_sources_path" } crossgcc_tarball_install_path() { @@ -39,7 +39,7 @@ crossgcc_tarball_install_path() { local install_path="$sources_path/util/crossgcc/tarballs/" local tarball_install_path="$install_path/$tarball" - echo "$tarball_install_path" + env printf '%s\n' "$tarball_install_path" } crossgcc_tarball_release_path() { @@ -49,5 +49,5 @@ crossgcc_tarball_release_path() { local release_path=$( project_release_path "$project" "$SOURCES" "$@" ) local tarball_release_path="$release_path/$tarball" - echo "$tarball_release_path" + env printf '%s\n' "$tarball_release_path" } |