More abs build fixes
This commit is contained in:
parent
a551289265
commit
78a1a0ac10
2 changed files with 19 additions and 0 deletions
|
@ -36,6 +36,8 @@ rm -rf etc/Makefile.in
|
||||||
rm -rf etc/Makefile
|
rm -rf etc/Makefile
|
||||||
rm -rf etc/pacman.d/Makefile.in
|
rm -rf etc/pacman.d/Makefile.in
|
||||||
rm -rf etc/pacman.d/Makefile
|
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
|
||||||
rm -rf src/pacman/po/Makefile.in
|
rm -rf src/pacman/po/Makefile.in
|
||||||
|
|
17
etc/abs/Makefile.am
Normal file
17
etc/abs/Makefile.am
Normal 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
|
Loading…
Add table
Reference in a new issue