diff options
author | Ingela Anderton Andin <[email protected]> | 2015-12-14 10:36:49 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2015-12-15 09:16:03 +0100 |
commit | 4ba8b8b69f18e642dc430746cd5857ec34a47aeb (patch) | |
tree | 837cc3225ff35330a477bcde3e4cc6e710d76c42 | |
parent | 69f4b8be1899eb115ced063ef7d606880df72d3d (diff) | |
download | otp-4ba8b8b69f18e642dc430746cd5857ec34a47aeb.tar.gz otp-4ba8b8b69f18e642dc430746cd5857ec34a47aeb.tar.bz2 otp-4ba8b8b69f18e642dc430746cd5857ec34a47aeb.zip |
inets: Include behaviour modules in install target
-rw-r--r-- | lib/inets/src/http_server/Makefile | 2 | ||||
-rw-r--r-- | lib/inets/src/inets_app/inets.app.src | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lib/inets/src/http_server/Makefile b/lib/inets/src/http_server/Makefile index b9f2290289..1c05d454a5 100644 --- a/lib/inets/src/http_server/Makefile +++ b/lib/inets/src/http_server/Makefile @@ -137,7 +137,7 @@ release_spec: opt $(INSTALL_DIR) "$(RELSYSDIR)/src/http_server" $(INSTALL_DATA) $(HRL_FILES) $(ERL_FILES) "$(RELSYSDIR)/src/http_server" $(INSTALL_DIR) "$(RELSYSDIR)/ebin" - $(INSTALL_DATA) $(TARGET_FILES) "$(RELSYSDIR)/ebin" + $(INSTALL_DATA) $(TARGET_FILES) $(BEHAVIOUR_TARGET_FILES) "$(RELSYSDIR)/ebin" release_docs_spec: diff --git a/lib/inets/src/inets_app/inets.app.src b/lib/inets/src/inets_app/inets.app.src index 2b9b8f5f32..883ba84e8e 100644 --- a/lib/inets/src/inets_app/inets.app.src +++ b/lib/inets/src/inets_app/inets.app.src @@ -65,6 +65,7 @@ httpd_connection_sup, httpd_conf, httpd_custom, + httpd_custom_api, httpd_esi, httpd_example, httpd_file, |