mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 07:48:50 -05:00
More abs build fixes
This commit is contained in:
parent
a551289265
commit
78a1a0ac10
@ -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
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…
Reference in New Issue
Block a user