summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/common-functions29
1 files changed, 15 insertions, 14 deletions
diff --git a/bin/common-functions b/bin/common-functions
index c072612..d5a15f8 100755
--- a/bin/common-functions
+++ b/bin/common-functions
@@ -38,20 +38,21 @@ find_pkgbuild() {
)"
if [ -n "${PKGBUILD}" ]; then
echo "${PKGBUILD}"
- # add i486 to the arch list
- sed '/^arch=[^#]*any/!s|^\(arch=(\)\([^#]*)\)\s*\(#.*\)\?$|\1i486 \2|' -i "${PKGBUILD}"
- if [ -f "${repo_paths["archlinux32"]}/$2/$1/PKGBUILD" ] && \
- [ ! -f "${PKGBUILD}.changes-applied" ]; then
- # If this package has modifications (or is new), apply them now:
- # append PKGBUILD
- cat "${repo_paths["archlinux32"]}/$2/$1/PKGBUILD" >> \
- "${PKGBUILD}"
- # copy (and overwrite) other files
- for file in "${repo_paths["archlinux32"]}/$2/$1/"*; do
- if [ -f "${file}" ] && [ "${file##*/}" != "PKGBUILD" ]; then
- cp "${file}" "${PKGBUILD%/*}/"
- fi
- done
+ if [ ! -f "${PKGBUILD}.changes-applied" ]; then
+ # add i486 to the arch list
+ sed '/^arch=[^#]*any/!s|^\(arch=(\)\([^#]*)\)\s*\(#.*\)\?$|\1i486 \2|' -i "${PKGBUILD}"
+ if [ -f "${repo_paths["archlinux32"]}/$2/$1/PKGBUILD" ]; then
+ # If this package has modifications (or is new), apply them now:
+ # append PKGBUILD
+ cat "${repo_paths["archlinux32"]}/$2/$1/PKGBUILD" >> \
+ "${PKGBUILD}"
+ # copy (and overwrite) other files
+ for file in "${repo_paths["archlinux32"]}/$2/$1/"*; do
+ if [ -f "${file}" ] && [ "${file##*/}" != "PKGBUILD" ]; then
+ cp "${file}" "${PKGBUILD%/*}/"
+ fi
+ done
+ fi
touch "${PKGBUILD}.changes-applied"
fi
break