Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2020-05-11 12:59:51 +1000
committerAllan McRae <allan@archlinux.org>2020-06-01 10:59:08 +1000
commit454ea024383eab60295e4c4fdf2c329475887b2c (patch)
tree5f3397782b3bb7e061770a63da5b7e34877f8193 /etc
parent8ce142a2552418f64a74e773f659d92b065d6209 (diff)
Remove autotools support
This removes support for autotools in favour of meson.
Diffstat (limited to 'etc')
-rw-r--r--etc/Makefile.am27
1 files changed, 0 insertions, 27 deletions
diff --git a/etc/Makefile.am b/etc/Makefile.am
deleted file mode 100644
index 0d4fbc07..00000000
--- a/etc/Makefile.am
+++ /dev/null
@@ -1,27 +0,0 @@
-dist_sysconf_DATA = makepkg.conf pacman.conf
-EXTRA_DIST = makepkg.conf.in pacman.conf.in
-
-# Files that should be removed, but which Automake does not know.
-MOSTLYCLEANFILES = $(dist_sysconf_DATA)
-
-SED_PROCESS = \
- $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
- $(SED) \
- -e 's|@sysconfdir[@]|$(sysconfdir)|g' \
- -e 's|@localstatedir[@]|$(localstatedir)|g' \
- -e 's|@prefix[@]|$(prefix)|g' \
- -e 's|@PACKAGE_VERSION[@]|$(PACKAGE_VERSION)|g' \
- -e 's|@PACKAGE_NAME[@]|$(PACKAGE_NAME)|g' \
- -e 's|@PKGEXT[@]|$(PKGEXT)|g' \
- -e 's|@SRCEXT[@]|$(SRCEXT)|g' \
- -e 's|@STRIP_BINARIES[@]|$(STRIP_BINARIES)|g' \
- -e 's|@STRIP_SHARED[@]|$(STRIP_SHARED)|g' \
- -e 's|@STRIP_STATIC[@]|$(STRIP_STATIC)|g' \
- -e 's|@CARCH[@]|$(CARCH)|g' \
- -e 's|@CHOST[@]|$(CHOST)|g' \
- -e 's|@ARCHSWITCH[@]|$(ARCHSWITCH)|g' \
- -e 's|@ROOTDIR[@]|$(ROOTDIR)|g' \
- < $< > $@
-
-%.conf: %.conf.in Makefile
- $(SED_PROCESS)