summaryrefslogtreecommitdiffstats
path: root/etc/pacman.d/Makefile.am
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2008-01-08 00:21:28 +0100
committerDan McGee <dan@archlinux.org>2008-01-15 05:22:30 +0100
commita0ac72b42219fbcf17dd7cf2ee992b71a6a1375a (patch)
tree13373fe776864709e3abbc2079565935db53cbda /etc/pacman.d/Makefile.am
parent9a18e0dbefd010f4505433cbf7a4d6bb40c548da (diff)
downloadpacman-a0ac72b42219fbcf17dd7cf2ee992b71a6a1375a.tar.gz
pacman-a0ac72b42219fbcf17dd7cf2ee992b71a6a1375a.tar.xz
etc: remove Arch-specific mirrorlist from repo
We shouldn't have the stock config be Arch specific for a few reasons: * Although it is our package, others should be able to use it * Keeping the mirrorlist coupled to the pacman package makes it hard to push updates to users without releasing a new copy of the pacman source Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'etc/pacman.d/Makefile.am')
-rw-r--r--etc/pacman.d/Makefile.am17
1 files changed, 0 insertions, 17 deletions
diff --git a/etc/pacman.d/Makefile.am b/etc/pacman.d/Makefile.am
deleted file mode 100644
index e1f33c76..00000000
--- a/etc/pacman.d/Makefile.am
+++ /dev/null
@@ -1,17 +0,0 @@
-pkgsysconfdir = ${sysconfdir}/pacman.d
-dist_pkgsysconf_DATA = mirrorlist
-EXTRA_DIST = mirrorlist.in
-#
-# Files that should be removed, but which Automake does not know.
-MOSTLYCLEANFILES = $(dist_pkgsysconf_DATA)
-
-$(dist_pkgsysconf_DATA): Makefile
- rm -f $@ $@.tmp
- sed \
- -e 's|@CARCH[@]|$(CARCH)|g' \
- $(srcdir)/mirrorlist.in >$@.tmp
- mv $@.tmp $@
-
-mirrorlist: $(srcdir)/mirrorlist.in
-
-# vim:set ts=2 sw=2 noet: