1
0
mirror of https://github.com/moparisthebest/pacman synced 2025-03-03 02:41:53 -05:00
pacman/etc/pacman.d/Makefile.am

18 lines
414 B
Makefile
Raw Normal View History

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)
2006-10-15 22:08:57 +00:00
$(dist_pkgsysconf_DATA): Makefile
rm -f $@ $@.tmp
sed \
-e 's|@CARCH[@]|$(CARCH)|g' \
$(srcdir)/mirrorlist.in >$@.tmp
mv $@.tmp $@
2007-01-17 03:40:08 +00:00
mirrorlist: $(srcdir)/mirrorlist.in
# vim:set ts=2 sw=2 noet: