diff options
author | Siri Hansen <[email protected]> | 2011-02-23 15:58:42 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2011-02-28 17:17:41 +0100 |
commit | 7405f353d3f06f2a4207f382d91435adbe9c9160 (patch) | |
tree | 8433f96ba1111df165589491774688aa067fdaee /lib/observer/src/Makefile | |
parent | 38fc7a0eb46167a27ebac41452ecd1fb0de8803c (diff) | |
download | otp-7405f353d3f06f2a4207f382d91435adbe9c9160.tar.gz otp-7405f353d3f06f2a4207f382d91435adbe9c9160.tar.bz2 otp-7405f353d3f06f2a4207f382d91435adbe9c9160.zip |
Add shell script and .bat file to start crashdump_viewer
Since browsers no longer can provide the full path of a file selected
with a file-type input field (browse button), the input field for
loading a crashdump is now changed to a plain text input field. Since
this reduces the user-friendlyness, a shell script (and a .bat file)
has instead been added so the crashdump_viewer can be started directly
from the command line - and thus normal tab completion can be used for
selecting the crashdump file.
Usage: cdv file [ browser ]
Diffstat (limited to 'lib/observer/src/Makefile')
-rw-r--r-- | lib/observer/src/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/observer/src/Makefile b/lib/observer/src/Makefile index b4eb518dd7..2d06cb6bc4 100644 --- a/lib/observer/src/Makefile +++ b/lib/observer/src/Makefile @@ -1,7 +1,7 @@ # # %CopyrightBegin% # -# Copyright Ericsson AB 2002-2009. All Rights Reserved. +# Copyright Ericsson AB 2002-2011. All Rights Reserved. # # The contents of this file are subject to the Erlang Public License, # Version 1.1, (the "License"); you may not use this file except in @@ -59,8 +59,10 @@ BINDIR= $(PRIVDIR)/bin EXECUTABLES= \ $(BINDIR)/etop \ $(BINDIR)/getop \ + $(BINDIR)/cdv \ $(BINDIR)/etop.bat \ - $(BINDIR)/getop.bat + $(BINDIR)/getop.bat \ + $(BINDIR)/cdv.bat CDVDIR= $(PRIVDIR)/crashdump_viewer GIF_FILES= \ $(CDVDIR)/collapsd.gif \ |