aboutsummaryrefslogtreecommitdiffstats
path: root/lib/observer/src
diff options
context:
space:
mode:
authorPeter Lemenkov <[email protected]>2010-09-16 18:20:21 +0400
committerBjörn Gustavsson <[email protected]>2010-09-17 11:11:51 +0200
commitf825c9f1baa03a60d97088ff831fce99b889b903 (patch)
treee814623f58772fb3b36af502815baa60786b6600 /lib/observer/src
parentb915bb2da3e5f507439df3ee8e259fb0a9bc424e (diff)
downloadotp-f825c9f1baa03a60d97088ff831fce99b889b903.tar.gz
otp-f825c9f1baa03a60d97088ff831fce99b889b903.tar.bz2
otp-f825c9f1baa03a60d97088ff831fce99b889b903.zip
Fix installation of example file in lib/observer
Files (actually one file - multitrace.erl), marked as EXAMPLE_FILES are installed into $(RELSYSDIR)/src which is inconsistent with installation procedure for other example file in other modules. This file should be installed into $(RELSYSDIR)/examples directory. Signed-off-by: Peter Lemenkov <[email protected]>
Diffstat (limited to 'lib/observer/src')
-rw-r--r--lib/observer/src/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/observer/src/Makefile b/lib/observer/src/Makefile
index dde1ea17be..b4eb518dd7 100644
--- a/lib/observer/src/Makefile
+++ b/lib/observer/src/Makefile
@@ -111,7 +111,8 @@ release_spec: opt
$(INSTALL_DIR) $(RELSYSDIR)/src
$(INSTALL_DATA) $(ERL_FILES) $(RELSYSDIR)/src
$(INSTALL_DATA) $(INTERNAL_HRL_FILES) $(RELSYSDIR)/src
- $(INSTALL_DATA) $(EXAMPLE_FILES) $(RELSYSDIR)/src
+ $(INSTALL_DIR) $(RELSYSDIR)/examples
+ $(INSTALL_DATA) $(EXAMPLE_FILES) $(RELSYSDIR)/examples
$(INSTALL_DIR) $(RELSYSDIR)/include
$(INSTALL_DATA) $(HRL_FILES) $(RELSYSDIR)/include
$(INSTALL_DIR) $(RELSYSDIR)/ebin