diff options
author | Luke Shumaker <lukeshu@parabola.nu> | 2018-01-02 23:38:04 -0500 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-08-20 09:00:03 +0200 |
commit | 0de7ec2754d61a38744fbc26b9411f4403d282da (patch) | |
tree | 72bf9f4078cc120f0b0b6e3590827211d7eee70c /Makefile | |
parent | 2b4cdac4a8fbbddee629fa6d94a681480b1eab4f (diff) | |
download | devtools32-0de7ec2754d61a38744fbc26b9411f4403d282da.tar.xz |
Revert "Remove i686 support"
This reverts commit 7259e7def07a5f6ee04a34db61a87361ad0b5ac7, except for commitpkg.in
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -28,7 +28,8 @@ GENERATED_CONFIGFILES = \ pacman-testing-i686.conf \ pacman-staging-i686.conf \ pacman-kde-unstable-i686.conf \ - pacman-gnome-unstable-i686.conf + pacman-gnome-unstable-i686.conf \ + makepkg-i686.conf CONFIGFILES = \ makepkg-x86_64.conf \ @@ -56,13 +57,18 @@ COMMITPKG_LINKS = \ gnome-unstablepkg ARCHBUILD_LINKS = \ + extra-i686-build \ extra-x86_64-build \ + testing-i686-build \ testing-x86_64-build \ + staging-i686-build \ staging-x86_64-build \ multilib-build \ multilib-testing-build \ multilib-staging-build \ + kde-unstable-i686-build \ kde-unstable-x86_64-build \ + gnome-unstable-i686-build \ gnome-unstable-x86_64-build CROSSREPOMOVE_LINKS = \ @@ -89,6 +95,10 @@ man: $(MANS) edit = sed -e "s|@pkgdatadir[@]|$(PREFIX)/share/devtools|g" +makepkg-i686.conf: makepkg-x86_64.conf + @echo "GEN $@" + @sed 's,\(["=]\)x86[-_]64\([-" ]\),\1i686\2,g' "$<" > "$@" + pacman-%-i686.conf: pacman-%.conf @echo "GEN $@" @sed 's,/mirrorlist$$,\032,' "$<" > "$@" |