diff options
author | Allan McRae <allan@archlinux.org> | 2012-06-07 06:23:06 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-06-26 06:00:41 +0200 |
commit | 1d32934769ebcf0ad32f0b8e8356e5fb0c7b8b2c (patch) | |
tree | 3b1d16a1a7ef9339e9199042931facb9b0f4e539 | |
parent | 9ce4f80db4cccfe16c4a747b8bf3185b48e8aefc (diff) | |
download | pacman-1d32934769ebcf0ad32f0b8e8356e5fb0c7b8b2c.tar.gz pacman-1d32934769ebcf0ad32f0b8e8356e5fb0c7b8b2c.tar.xz |
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>
-rw-r--r-- | scripts/Makefile.am | 12 |
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) && \ |