diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-10-15 22:08:57 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-10-15 22:08:57 +0000 |
commit | 9a82fe23987ce00091f3a5f704bab1fbb0c20c4f (patch) | |
tree | ffe4da91be45da62cb94ddafb8b95254ae2eb146 /etc/pacman.d/Makefile.am | |
parent | ceef991cbdba73d97aaca629f72e053d996b3be4 (diff) | |
download | pacman-9a82fe23987ce00091f3a5f704bab1fbb0c20c4f.tar.xz |
*** empty log message ***
Diffstat (limited to 'etc/pacman.d/Makefile.am')
-rw-r--r-- | etc/pacman.d/Makefile.am | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/etc/pacman.d/Makefile.am b/etc/pacman.d/Makefile.am new file mode 100644 index 00000000..5d83f8f7 --- /dev/null +++ b/etc/pacman.d/Makefile.am @@ -0,0 +1,12 @@ +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 |