diff options
author | Christian Ehrhardt <christian.ehrhardt@canonical.com> | 2017-08-18 12:36:48 +0200 |
---|---|---|
committer | Christian Ehrhardt <christian.ehrhardt@canonical.com> | 2017-08-18 12:36:48 +0200 |
commit | a2ddb5e56bbd6a991eb8256004c0d3aec900b5b3 (patch) | |
tree | e3cd86781f0f40ee449c33aa9276d26075d453dd /debian | |
parent | 08f1c6d6fdd0e4a6a0e3a21613da1089d6e3e3ab (diff) |
fix packaging of dpdk-devbind
17.05 moved all the tools to /usr/share/dpdk/usertools and those that
got installed by the makefiles are adapted like dpdk-pmdinfo.
But others that we decided to include like dpdk-devbind are missing.
So currently this is a broken symlink:
/sbin/dpdk-devbind -> /usr/share/dpdk/tools/dpdk-devbind.py
And intstead it is at:
/usr/share/dpdk/usertools/dpdk-devbind.py
Fix by adapting d/rules to link from the right path
Change-Id: I89ba54b3df81f5d2170e8a231674a6592935a033
Signed-off-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index e05f332f..e2b018cd 100755 --- a/debian/rules +++ b/debian/rules @@ -246,7 +246,7 @@ endif cp debian/dpdk.interfaces debian/dpdk/etc/dpdk/interfaces rm debian/dpdk/usr/sbin/dpdk-devbind mkdir -p debian/dpdk/sbin - ln -s /usr/share/dpdk/tools/dpdk-devbind.py \ + ln -s /usr/share/dpdk/usertools/dpdk-devbind.py \ debian/dpdk/sbin/dpdk-devbind # Package: dpdk-dev (build environment) # workaround to fix symbolic link creation |