diff options
Diffstat (limited to 'projects/libreboot-sources')
-rwxr-xr-x | projects/libreboot-sources/install/libreboot-sources | 22 | ||||
-rwxr-xr-x | projects/libreboot-sources/libreboot-sources | 4 |
2 files changed, 13 insertions, 13 deletions
diff --git a/projects/libreboot-sources/install/libreboot-sources b/projects/libreboot-sources/install/libreboot-sources index 9d8536ef..e85d3c22 100755 --- a/projects/libreboot-sources/install/libreboot-sources +++ b/projects/libreboot-sources/install/libreboot-sources @@ -21,15 +21,15 @@ SOURCES="sources" TAR_XZ="tar.xz" usage() { - env printf '%s\n' "$executable [action] [sources path] (extract path)" >&2 + printf '%s\n' "$executable [action] [sources path] (extract path)" >&2 - env printf '\n%s\n' 'Actions:' >&2 - env printf '%s\n' ' extract - Extract build system sources' >&2 - env printf '%s\n' ' copy - Copy projects sources' >&2 - env printf '%s\n' ' prepare - Extract and copy sources' >&2 + printf '\n%s\n' 'Actions:' >&2 + printf '%s\n' ' extract - Extract build system sources' >&2 + printf '%s\n' ' copy - Copy projects sources' >&2 + printf '%s\n' ' prepare - Extract and copy sources' >&2 - env printf '\n%s\n' ' When no extract path is provided, sources are extracted in the current' - env printf '%s\n' ' directory.' + printf '\n%s\n' ' When no extract path is provided, sources are extracted in the current' + printf '%s\n' ' directory.' } extract() { @@ -49,14 +49,14 @@ extract() { archive=$( find $sources_path -name "$BUILD_SYSTEM-sources.$TAR_XZ" || true ) if [ -z "$archive" ] then - env printf '%s\n' "Finding $BUILD_SYSTEM sources archive failed!" >&2 + printf '%s\n' "Finding $BUILD_SYSTEM sources archive failed!" >&2 usage exit 1 fi tar -xf "$archive" -ps -C "$extract_path" - env printf '\n%s\n' "Extracted $BUILD_SYSTEM sources from $sources_path to $extract_path" + printf '\n%s\n' "Extracted $BUILD_SYSTEM sources from $sources_path to $extract_path" } copy() { @@ -83,7 +83,7 @@ copy() { cp "$file" "$build_system_sources_path" done - env printf '\n%s\n' "Copied $BUILD_SYSTEM sources from $sources_path to $extract_path" + printf '\n%s\n' "Copied $BUILD_SYSTEM sources from $sources_path to $extract_path" } requirements() { @@ -96,7 +96,7 @@ requirements() { if [ -z "$requirement_path" ] then - env printf '%s\n' "Missing requirement: $requirement" >&2 + printf '%s\n' "Missing requirement: $requirement" >&2 exit 1 fi done diff --git a/projects/libreboot-sources/libreboot-sources b/projects/libreboot-sources/libreboot-sources index 259cb10a..7d604740 100755 --- a/projects/libreboot-sources/libreboot-sources +++ b/projects/libreboot-sources/libreboot-sources @@ -38,8 +38,8 @@ release() { project_release_install "$project" "$TOOLS" "$@" - env printf '%s\n' "$VERSION" > "$sources_path/$DOTVERSION" - env printf '%s\n' "$SOURCE_DATE_EPOCH" > "$sources_path/$DOTEPOCH" + printf '%s\n' "$VERSION" > "$sources_path/$DOTVERSION" + printf '%s\n' "$SOURCE_DATE_EPOCH" > "$sources_path/$DOTEPOCH" if git_check "$sources_path" then |