summaryrefslogtreecommitdiff
path: root/bin/common-functions
diff options
context:
space:
mode:
Diffstat (limited to 'bin/common-functions')
-rwxr-xr-xbin/common-functions12
1 files changed, 8 insertions, 4 deletions
diff --git a/bin/common-functions b/bin/common-functions
index f927386..5f124d3 100755
--- a/bin/common-functions
+++ b/bin/common-functions
@@ -2,10 +2,6 @@
# contains functions used by more than one script
-# TODO:
-
-# mangle $arch in PKBUILDs to contain i486, i586, i686
-
# find_pkgbuilds package repository git_repository git_revision mod_git_revision
# find the PKGBUILD and modification of $package from $repository
# sets $PKGBUILD and $PKGBUILD_mod
@@ -481,3 +477,11 @@ insert_break_loops_orders() {
) | \
sponge "${file}"
}
+
+# append_architectures $PKGBUILD
+# mangle $arch in PKBUILDs to contain i486, i586, i686
+
+append_architectures() {
+ local PKGBUILD="$1"
+ sed -i '/^arch=(/s/(/(i686 /'
+}