diff options
author | Thomas Bächler <thomas@archlinux.org> | 2009-09-27 19:01:20 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2009-09-27 19:01:20 +0200 |
commit | ddfe9dab9710e9894c32c00ca573e1991dd426fa (patch) | |
tree | 53c24a28f768f16e3ce61ad06c75a57600fac9b8 /Makefile | |
parent | 4cc58cd1f1e6b427f0519abd03377053622aae7c (diff) | |
download | netctl-ddfe9dab9710e9894c32c00ca573e1991dd426fa.tar.gz netctl-ddfe9dab9710e9894c32c00ca573e1991dd426fa.tar.xz |
Fix symlink creation in Makefile - it shouldn't point to the build directory
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ install: # Libs install -m644 src/{network,wireless,8021x,globals} $(DESTDIR)/usr/lib/network install -m755 src/connections/* ${DESTDIR}/usr/lib/network/connections - ln -s $(DESTDIR)/usr/lib/network/connections/ethernet $(DESTDIR)/usr/lib/network/connections/ethernet-iproute + ln -s ethernet $(DESTDIR)/usr/lib/network/connections/ethernet-iproute # Hooks install -m755 src/hooks/* ${DESTDIR}/usr/lib/network/hooks/ # 'Binaries' |