More abs build fixes

This commit is contained in:
Aaron Griffin 2006-12-19 07:58:29 +00:00
parent a551289265
commit 78a1a0ac10
2 changed files with 19 additions and 0 deletions

View File

@ -36,6 +36,8 @@ rm -rf etc/Makefile.in
rm -rf etc/Makefile
rm -rf etc/pacman.d/Makefile.in
rm -rf etc/pacman.d/Makefile
rm -rf etc/abs/Makefile.in
rm -rf etc/abs/Makefile
rm -rf src/pacman/po/Makefile
rm -rf src/pacman/po/Makefile.in

17
etc/abs/Makefile.am Normal file
View File

@ -0,0 +1,17 @@
EXTRA_DIST = abs.conf \
supfile.arch \
supfile.community \
supfile.extra \
supfile.testing \
supfile.unstable
install-data-hook:
mkdir -p $(DESTDIR)$(sysconfdir)/abs ; \
for j in $(EXTRA_DIST); do \
$(INSTALL) -c -m 644 $(srcdir)/$$j $(DESTDIR)$(sysconfdir)/abs/$$j ; \
done
uninstall-hook:
for j in $(EXTRA_DIST); do \
rm -f $(DESTDIR)$(sysconfdir)/abs/$$j ; \
done