diff options
author | Erich Eckner <git@eckner.net> | 2018-06-27 10:44:15 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-01-22 08:27:34 +0100 |
commit | b855f188d07765aa16fa4e1872bf408269c0d205 (patch) | |
tree | f3932dbf57d257a428570af57ea886e1cb03da9c | |
parent | 49d346cde73cc69ab751c919b26ec20e552ef425 (diff) | |
download | devtools32-b855f188d07765aa16fa4e1872bf408269c0d205.tar.xz |
fix whitespace errors
-rw-r--r-- | archbuild.in | 2 | ||||
-rw-r--r-- | find-libdeps.in | 2 | ||||
-rw-r--r-- | mkarchroot.in | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/archbuild.in b/archbuild.in index bd5706d..163a108 100644 --- a/archbuild.in +++ b/archbuild.in @@ -71,7 +71,7 @@ else -C "@pkgdatadir@/pacman-${repo}.conf" \ -M "@pkgdatadir@/makepkg-${arch}.conf" \ "${chroots}/${repo}-${arch}/root" \ - pacman -Syu --noconfirm || abort + pacman -Syu --noconfirm || abort fi # Always build official packages reproducibly diff --git a/find-libdeps.in b/find-libdeps.in index ce92a4e..7a3e6f5 100644 --- a/find-libdeps.in +++ b/find-libdeps.in @@ -57,7 +57,7 @@ process_sofile() { case $script_mode in deps) find_args=(-perm -u+x);; - provides) find_args=(-name '*.so*');; + provides) find_args=(-name '*.so*');; esac find . -type f "${find_args[@]}" | while read -r filename; do diff --git a/mkarchroot.in b/mkarchroot.in index 5983abc..a916f2a 100644 --- a/mkarchroot.in +++ b/mkarchroot.in @@ -84,7 +84,7 @@ while read -r varname; do done < <(declare -x | sed -r 's/^declare -x ([^=]*)=.*/\1/' | grep -i '_proxy$') env -i "${_env[@]}" \ pacstrap -GMcd ${pac_conf:+-C "$pac_conf"} "$working_dir" \ - "${cache_dirs[@]/#/--cachedir=}" "$@" || die 'Failed to install all packages' + "${cache_dirs[@]/#/--cachedir=}" "$@" || die 'Failed to install all packages' printf '%s.UTF-8 UTF-8\n' en_US de_DE > "$working_dir/etc/locale.gen" cat '/etc/hosts' > "$working_dir/etc/hosts" |