diff options
author | Rémy Oudompheng <remy@archlinux.org> | 2011-06-19 18:37:11 +0200 |
---|---|---|
committer | Rémy Oudompheng <remy@archlinux.org> | 2011-06-19 18:43:40 +0200 |
commit | fa94ee0e4b0489ee0ce57ccd4c8e03da10a81382 (patch) | |
tree | e8386f0e3122118a437a57abfe4d4d497ed99bf9 /Makefile | |
parent | 99cb72a9e098e61407002d3339c0d842d580ccca (diff) | |
download | netctl-fa94ee0e4b0489ee0ce57ccd4c8e03da10a81382.tar.gz netctl-fa94ee0e4b0489ee0ce57ccd4c8e03da10a81382.tar.xz |
Move executable scripts to a separate scripts/ directory
Signed-off-by: Rémy Oudompheng <remy@archlinux.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -19,12 +19,12 @@ install: # Hooks install -m755 src/hooks/* ${DESTDIR}/usr/lib/network/hooks/ # Scripts - install -Dm755 src/netcfg $(DESTDIR)/usr/bin/netcfg2 - install -Dm755 src/netcfg-menu $(DESTDIR)/usr/bin/netcfg-menu + install -Dm755 scripts/netcfg $(DESTDIR)/usr/bin/netcfg2 + install -Dm755 scripts/netcfg-menu $(DESTDIR)/usr/bin/netcfg-menu install -m755 wpa_actiond/netcfg-wpa_actiond{,-action} ifplugd/net-auto-wired $(DESTDIR)/usr/bin install -Dm755 ifplugd/netcfg.action $(DESTDIR)/etc/ifplugd/netcfg.action # Daemons - install -m755 src/net-{profiles,rename} wpa_actiond/net-auto-wireless ifplugd/net-auto-wired $(DESTDIR)/etc/rc.d + install -m755 scripts/net-{profiles,rename} wpa_actiond/net-auto-wireless ifplugd/net-auto-wired $(DESTDIR)/etc/rc.d install -m644 wpa_actiond/net-auto-wireless.service ifplugd/net-auto-wired.service $(DESTDIR)/lib/systemd/system # Shell Completion install -Dm644 contrib/bash-completion $(DESTDIR)/etc/bash_completion.d/netcfg |