index : devtools32 | |
Archlinux32 fork of devtools | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2021-05-01 17:31:52 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2022-06-07 06:38:46 +0200 |
commit | c2b14468e7645cd517d4804c86b6401643d89128 (patch) | |
tree | 101ced16664e12790fe0ee27283c5432e8b68592 | |
parent | 71336814fb0a459827ce3e47fa397ea51fab0590 (diff) |
-rw-r--r-- | Makefile | 10 |
@@ -135,11 +135,17 @@ edit = sed -e "s|@pkgdatadir[@]|$(PREFIX)/share/devtools|g" makepkg-i486.conf: makepkg-x86_64.conf @echo "GEN $@" - @sed 's,\(["=]\)x86[-_]64\([-" ]\),\1i486\2,g' "$<" > "$@" + @sed ' \ + s,\(["=]\)x86[-_]64\([-" ]\),\1i486\2,g; \ + s,-fcf-protection,,g; \ + ' "$<" > "$@" makepkg-i686.conf: makepkg-x86_64.conf @echo "GEN $@" - @sed 's,\(["=]\)x86[-_]64\([-" ]\),\1i686\2,g' "$<" > "$@" + @sed ' + s,\(["=]\)x86[-_]64\([-" ]\),\1i686\2,g; \ + s,-fcf-protection,,g; \ + ' "$<" > "$@" makepkg-pentium4.conf: makepkg-i686.conf @echo "GEN $@" |