summaryrefslogtreecommitdiff
path: root/src/mips64el-tools/mips-add
blob: 21fcfba02f159bbc8361a57231d42437ae42fad7 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
. libremessages
if ! grep mips64el PKGBUILD >/dev/null; then  # Add mips64el in ${arch} array if it isn't 'any'
    warning "Adding mips64el arch"
    sed -i "s/^\(arch=([^)anym]\+\))/\1 'mips64el')/" "PKGBUILD"
    git add PKGBUILD
    git commit
fi