1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

Create repo-remove symlink in scripts dir

Fix the creation of the repo-remove symlink in the scripts/ dir
on building.

Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Allan McRae 2012-06-07 14:23:06 +10:00 committed by Dan McGee
parent 9ce4f80db4
commit 1d32934769

View File

@ -4,7 +4,9 @@ AUTOMAKE_OPTIONS = std-options
SUBDIRS = po
bin_SCRIPTS = \
$(OURSCRIPTS)
$(OURSCRIPTS) \
repo-remove \
repo-elephant
OURSCRIPTS = \
makepkg \
@ -91,12 +93,12 @@ repo-add: \
$(srcdir)/library/output_format.sh
repo-remove: $(srcdir)/repo-add.sh.in
$(RM) repo-remove
$(LN_S) repo-add repo-remove
$(AM_V_at)$(RM) repo-remove
$(AM_V_at)$(LN_S) repo-add repo-remove
repo-elephant: $(srcdir)/repo-add.sh.in
$(RM) repo-elephant
$(LN_S) repo-add repo-elephant
$(AM_V_at)$(RM) repo-elephant
$(AM_V_at)$(LN_S) repo-add repo-elephant
install-data-hook:
cd $(DESTDIR)$(bindir) && \