diff options
author | Ricardo Salveti <ricardo.salveti@linaro.org> | 2016-07-18 21:20:33 -0300 |
---|---|---|
committer | Ricardo Salveti <ricardo.salveti@linaro.org> | 2016-07-19 09:01:09 -0300 |
commit | 24f38da71b1922505e78bdecb496c882cd060402 (patch) | |
tree | 895349e1b826061d110661c661119dee65f2b9bb | |
parent | f8ff61ffa81eb18485434976098dc6c33fd759c6 (diff) |
Fix libdpdk-dev headers path
Since libdpdk-dev.dirs was removed, we need to manually create the
correct includes path for libdpdk-dev.
Change-Id: I9abd78ed4567623590a1d5480df488a74787156a
Signed-off-by: Ricardo Salveti <ricardo.salveti@linaro.org>
-rw-r--r-- | debian/changelog | 4 | ||||
-rwxr-xr-x | debian/rules | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index b788bf15..2acfdf8d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,7 +9,9 @@ dpdk (16.07-rc3-1) UNRELEASED; urgency=medium * update symbols [ Ricardo Salveti de Araujo ] - * debian/rules: allow all make commands to be verbose + * debian/rules: + - Allow all make commands to be verbose + - Fix libdpdk-dev headers path -- Christian Ehrhardt <christian.ehrhardt@canonical.com> Tue, 19 Jul 2016 08:32:06 +0200 diff --git a/debian/rules b/debian/rules index 8329ae33..42e58bad 100755 --- a/debian/rules +++ b/debian/rules @@ -142,6 +142,7 @@ binary-arch: # linker script mv debian/dpdk/usr/lib/libdpdk.so debian/libdpdk-dev/$(LIBDIR)/ # includes + mkdir -p debian/libdpdk-dev/usr/include mv debian/dpdk-dev/usr/include/dpdk debian/libdpdk-dev/usr/include/ # all static libs are in the dev package mv debian/dpdk/usr/lib/lib*.a debian/libdpdk-dev/$(LIBDIR)/ |