summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2012-06-07 14:23:06 +1000
committerDan McGee <dan@archlinux.org>2012-06-25 23:00:41 -0500
commit1d32934769ebcf0ad32f0b8e8356e5fb0c7b8b2c (patch)
tree3b1d16a1a7ef9339e9199042931facb9b0f4e539 /scripts
parent9ce4f80db4cccfe16c4a747b8bf3185b48e8aefc (diff)
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>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile.am12
1 files changed, 7 insertions, 5 deletions
diff --git a/scripts/Makefile.am b/scripts/Makefile.am
index ae366241..b69763d8 100644
--- a/scripts/Makefile.am
+++ b/scripts/Makefile.am
@@ -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) && \