summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHermet Park <hermet@hermet.pe.kr>2016-05-28 19:08:03 +0900
committerHermet Park <hermet@hermet.pe.kr>2016-05-28 19:08:03 +0900
commit01c7fd7cda1f89c8c0257c97f9822e40c4fb2df8 (patch)
tree3bdfa6d890ecb7d1af3d0a1249e20fe2dede08c6
parentd1127c6a5b7edc60bb22bf1b9af8e1650ab2a6d2 (diff)
downloadefl-01c7fd7cda1f89c8c0257c97f9822e40c4fb2df8.tar.gz
eio: fix build break.
there were missing eo headers. fix and make it work again.
-rw-r--r--src/Makefile_Eio.am2
-rw-r--r--src/lib/eio/Makefile.am6
2 files changed, 6 insertions, 2 deletions
diff --git a/src/Makefile_Eio.am b/src/Makefile_Eio.am
index 86b7f4a3bd..6fa8a7ccf0 100644
--- a/src/Makefile_Eio.am
+++ b/src/Makefile_Eio.am
@@ -27,7 +27,7 @@ lib/eio/Eio.h \
lib/eio/Eio_Legacy.h \
lib/eio/Eio_Eo.h \
lib/eio/eio_inline_helper.x
-nodist_installed_eiomainheaders_DATA = $(eio_eoolian_h)
+nodist_installed_eiomainheaders_DATA = $(eio_eolian_h)
lib_eio_libeio_la_SOURCES = \
lib/eio/eio_dir.c \
diff --git a/src/lib/eio/Makefile.am b/src/lib/eio/Makefile.am
index 489161c55a..41d2d044bc 100644
--- a/src/lib/eio/Makefile.am
+++ b/src/lib/eio/Makefile.am
@@ -4,7 +4,9 @@ include ../../Makefile_Eolian_Subbuild_Helper.am
### Library
-EIO_EOS = eio_model.eo
+EIO_EOS = eio_model.eo \
+ eio_job.eo \
+ eio_sentry.eo
EIO_EOS_H = $(EIO_EOS:%.eo=%.eo.h)
EIO_EOS_C = $(EIO_EOS:%.eo=%.eo.c)
@@ -31,6 +33,8 @@ eio_monitor.c \
eio_monitor_poll.c \
eio_single.c \
eio_xattr.c \
+eio_job.c \
+eio_sentry.c \
eio_model.c \
eio_model_private.h \
eio_private.h \