summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2016-01-07 17:38:32 +0100
committerThomas Haller <thaller@redhat.com>2016-01-07 17:41:58 +0100
commit39d6976e89e97249cda9a2d915bc399541ee9d46 (patch)
tree10b83ac71f62a1a4bff6564d6d6b3e8cd4eeeb4c
parent39fc73eed9a2f63638f8736b3f9f9d4e816207db (diff)
downloadNetworkManager-39d6976e89e97249cda9a2d915bc399541ee9d46.tar.gz
build: minor change creating symlinks in install-exec-hook for nmtui
-rw-r--r--clients/tui/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/clients/tui/Makefile.am b/clients/tui/Makefile.am
index 0ce3cc4563..caf792ee62 100644
--- a/clients/tui/Makefile.am
+++ b/clients/tui/Makefile.am
@@ -25,12 +25,12 @@ links = nmtui-edit nmtui-connect nmtui-hostname
install-exec-hook:
for link in $(links); do \
- cd $(DESTDIR)$(bindir) && $(LN_S) -f nmtui $$link; \
+ $(LN_S) -f nmtui "$(DESTDIR)$(bindir)/$$link"; \
done
uninstall-hook:
for link in $(links); do \
- rm -f $(DESTDIR)$(bindir)/$$link; \
+ rm -f "$(DESTDIR)$(bindir)/$$link"; \
done
nmtui_SOURCES = \