diff options
author | Christophe Ronco <c.ronco@kerlink.fr> | 2017-01-16 13:51:12 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2017-01-16 22:16:37 +0100 |
commit | e692972a82658e39a63020f0e75047b9260e0160 (patch) | |
tree | 2b0ad1229c9c2ec0bcc4bd1671f8327ba250ea9b | |
parent | b79bec8d35a314c598991d68da244d759abe22fc (diff) | |
download | external_libqmi-e692972a82658e39a63020f0e75047b9260e0160.zip external_libqmi-e692972a82658e39a63020f0e75047b9260e0160.tar.gz external_libqmi-e692972a82658e39a63020f0e75047b9260e0160.tar.bz2 |
qmi-firmware-update: fix compilation inside yocto
In Yocto, build is done outside source directory.
Without this patch, generated enum files are empty.
-rw-r--r-- | src/qmi-firmware-update/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qmi-firmware-update/Makefile.am b/src/qmi-firmware-update/Makefile.am index a9c3583..40af604 100644 --- a/src/qmi-firmware-update/Makefile.am +++ b/src/qmi-firmware-update/Makefile.am @@ -34,9 +34,9 @@ qmi_firmware_update_CPPFLAGS = \ $(NULL) ENUMS = \ - qfu-image.h \ - qfu-qdl-message.h \ - qfu-dload-message.h \ + $(top_srcdir)/src/qmi-firmware-update/qfu-image.h \ + $(top_srcdir)/src/qmi-firmware-update/qfu-qdl-message.h \ + $(top_srcdir)/src/qmi-firmware-update/qfu-dload-message.h \ $(NULL) ENUMS_GENERATED = \ |