mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-02 08:35:06 -04:00
fa2164a59e
Fully implement what this commit allows:
ebad199614
Dan: update .gitignore as well.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Signed-off-by: Dan McGee <dan@archlinux.org>
18 lines
414 B
Makefile
18 lines
414 B
Makefile
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:
|