diff options
author | Erich Eckner <git@eckner.net> | 2019-12-11 11:09:46 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-12-11 11:09:46 +0100 |
commit | 7322f16a1c30d9f91e4e0bdae20268986f5c2916 (patch) | |
tree | 61be6e21292ee970db10047348c688c2adff8b6e | |
parent | 83e8727103fec492e495513c75c512eed674fb3f (diff) | |
download | builder-7322f16a1c30d9f91e4e0bdae20268986f5c2916.tar.xz |
lib/common-functions: mangle_pkgbuild(): fix indentation
-rwxr-xr-x | lib/common-functions | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/common-functions b/lib/common-functions index f5e1f74..997d322 100755 --- a/lib/common-functions +++ b/lib/common-functions @@ -461,11 +461,11 @@ mangle_pkgbuild() { N ba } - :b - s/\(=.*["'"'"'([:space:]]\)lib32-/\1/g - s/\(=.*["'"'"'([:space:]]\)gcc-multilib\(["'"'"')[:space:]]\)/\1gcc\2/g - s/\(=.*["'"'"'([:space:]][^[:space:]$]\+[<=>]\S\+\)-[^:"'"'"')[:space:]]\+\([:"'"'"')[:space:]]\)/\1\2/g - tb + :b + s/\(=.*["'"'"'([:space:]]\)lib32-/\1/g + s/\(=.*["'"'"'([:space:]]\)gcc-multilib\(["'"'"')[:space:]]\)/\1gcc\2/g + s/\(=.*["'"'"'([:space:]][^[:space:]$]\+[<=>]\S\+\)-[^:"'"'"')[:space:]]\+\([:"'"'"')[:space:]]\)/\1\2/g + tb } ' "${PKGBUILD}" } |