This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "".
The branch, master has been updated via 52f32ce1fa6b5416c59ead45ff27d731d98b8f87 (commit) from 05f8f96ae606eecfff48e3544885d43b9f541f3c (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 52f32ce1fa6b5416c59ead45ff27d731d98b8f87 Author: Petri Savolainen petri.savolainen@linaro.org Date: Thu Feb 16 13:48:09 2017 +0200
linux-gen: abi: add symlink to arch specific dir
Added symbolic link to the installed include directory. The link points to the arch specific abi dir, so that application does not need to add the arch specific dir into its makefile.
Signed-off-by: Petri Savolainen petri.savolainen@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/configure.ac b/configure.ac index 0280ef1..d344e6a 100644 --- a/configure.ac +++ b/configure.ac @@ -53,6 +53,8 @@ AC_PROG_CXX AC_PROG_INSTALL AC_PROG_MAKE_SET
+AC_PROG_LN_S + AM_PROG_AR #Use libtool LT_INIT([]) diff --git a/platform/linux-generic/Makefile.am b/platform/linux-generic/Makefile.am index 576fedf..0487028 100644 --- a/platform/linux-generic/Makefile.am +++ b/platform/linux-generic/Makefile.am @@ -212,3 +212,9 @@ __LIB__libodp_linux_la_SOURCES = \ if HAVE_PCAP __LIB__libodp_linux_la_SOURCES += pktio/pcap.c endif + +# Create symlink for ABI header files. Application does not need to use the arch +# specific include path for installed files. +install-data-hook: + $(LN_S) -r $(prefix)/include/odp/arch/@ARCH_ABI@/odp/api/abi \ + $(prefix)/include/odp/api/abi
-----------------------------------------------------------------------
Summary of changes: configure.ac | 2 ++ platform/linux-generic/Makefile.am | 6 ++++++ 2 files changed, 8 insertions(+)
hooks/post-receive