package/iputils: use relative symlink for ping6
Fixes (part of): http://autobuild.buildroot.net/results/5659e1c91831921bd9ad6af670258783771b4dc8/ Commit6b37dda2a9
(package/iputils: create ping6 symlink), added a ping6 symlink, but used the absolute (build) path to ping as the target, which is naturally no good at runtime: ls -l target/bin/ping6 lrwxrwxrwx 1 peko peko 58 Jan 10 08:25 target/bin/ping6 -> /home/peko/source/buildroot/output-iputils/target/bin/ping Instead use a relative symlink. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Reviewed-by: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com> (cherry picked from commit84d471a0b1
) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
88ff46a1b8
commit
34af64ef98
@ -93,7 +93,7 @@ IPUTILS_POST_INSTALL_TARGET_HOOKS += IPUTILS_MOVE_BINARIES
|
||||
|
||||
# upstream requires distros to create symlink
|
||||
define IPUTILS_CREATE_PING6_SYMLINK
|
||||
ln -sf $(TARGET_DIR)/bin/ping $(TARGET_DIR)/bin/ping6
|
||||
ln -sf ping $(TARGET_DIR)/bin/ping6
|
||||
endef
|
||||
IPUTILS_POST_INSTALL_TARGET_HOOKS += IPUTILS_CREATE_PING6_SYMLINK
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user