1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00
pacman/etc/pacman.d/Makefile.am
2006-10-15 22:08:57 +00:00

13 lines
303 B
Makefile

EXTRA_DIST =
install-data-hook:
mkdir -p $(DESTDIR)$(sysconfdir)/pacman.d ; \
for j in $(EXTRA_DIST); do \
$(INSTALL) -c -m 644 $(srcdir)/$$j $(DESTDIR)$(sysconfdir)/pacman.d/$$j ; \
done
uninstall-hook:
for j in $(EXTRA_DIST); do \
rm -f $(DESTDIR)$(sysconfdir)/pacman.d/$$j ; \
done