* Re: [PATCH] trace-cmd: Add BUILDING and INSTALL instructions to README [not found] <1269509057-4336-1-git-send-email-jkacur@redhat.com> @ 2010-03-25 13:31 ` Steven Rostedt 2010-03-25 14:23 ` John Kacur 0 siblings, 1 reply; 3+ messages in thread From: Steven Rostedt @ 2010-03-25 13:31 UTC (permalink / raw) To: John Kacur; +Cc: lkml, Clark Williams, Darren Hart On Thu, 2010-03-25 at 10:24 +0100, John Kacur wrote: > - Add BUILDING and INSTALL instructions to the README > - Change Makefile so that messages don't appear like errors. Thanks, Did you rebase your repo or do I need to pull in the other patches from the mbox? One comment below. > > Signed-off-by: John Kacur <jkacur@redhat.com> > --- > Makefile | 6 +++--- > README | 26 ++++++++++++++++++++++++++ > 2 files changed, 29 insertions(+), 3 deletions(-) > > diff --git a/Makefile b/Makefile > index 8a3f25c..04fe380 100644 > --- a/Makefile > +++ b/Makefile > @@ -373,10 +373,10 @@ ifneq ($(dep_includes),) > endif > > show_gui_make: > - @echo "*** to build the gui, type \"make gui\" ***" > + @echo "Note: to build the gui, type \"make gui\"" > > show_gui_done: > - @echo "*** gui build complete ***" > + @echo "gui build complete" > > PHONY += show_gui_make > > @@ -397,7 +397,7 @@ install_cmd: all_cmd install_plugins > $(INSTALL) trace-cmd '$(bindir_SQ)' > > install: install_cmd > - @echo "*** to install the gui, type \"make install_gui\" ***" > + @echo "Note: to install the gui, type \"make install_gui\"" > > install_gui: install_cmd gui > $(INSTALL) -d -m 755 '$(bindir_SQ)' > diff --git a/README b/README > index 7ac4390..d191197 100644 > --- a/README > +++ b/README > @@ -9,3 +9,29 @@ These files also make up the code to create the libraries > The applications are licensed under the GNU General Public License 2.0 > (see COPYING) and the libraries are licensed under the GNU > Lesser General Public License 2.1 (See COPYING.LIB). > + > +BUILDING: > + > +To make trace-cmd > + make > + > +To make the gui > + make gui > + > +INSTALL: > + > +To install trace-cmd > + make install > + > +To install the gui > + make install_gui > + > +Note: The default install is relative to /usr/local > + The default install directory is /usr/local/bin > + The default plugin directory is /usr/local/share/trace-cmd/plugins > + > +To change the default, you can set 'prefix', eg > +mkdir $HOME/test-trace > +make prefix=$HOME/test-trace > +make prefix=$HOME/test-trace install Looks good, but I would use the example of this: make prefix=~ make prefix=~ install The above would install the executables into your home directory ~/bin and the plugins into ~/.trace-cmd/plugins -- Steve > + ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] trace-cmd: Add BUILDING and INSTALL instructions to README 2010-03-25 13:31 ` [PATCH] trace-cmd: Add BUILDING and INSTALL instructions to README Steven Rostedt @ 2010-03-25 14:23 ` John Kacur 2010-03-25 14:46 ` Steven Rostedt 0 siblings, 1 reply; 3+ messages in thread From: John Kacur @ 2010-03-25 14:23 UTC (permalink / raw) To: rostedt; +Cc: lkml, Clark Williams, Darren Hart ----- "Steven Rostedt" <rostedt@goodmis.org> wrote: > On Thu, 2010-03-25 at 10:24 +0100, John Kacur wrote: > > - Add BUILDING and INSTALL instructions to the README > > - Change Makefile so that messages don't appear like errors. > > Thanks, > > Did you rebase your repo or do I need to pull in the other patches > from > the mbox? I rebased the repo and did a push -f > > One comment below. > > > > > Signed-off-by: John Kacur <jkacur@redhat.com> > > --- > > Makefile | 6 +++--- > > README | 26 ++++++++++++++++++++++++++ > > 2 files changed, 29 insertions(+), 3 deletions(-) > > > > diff --git a/Makefile b/Makefile > > index 8a3f25c..04fe380 100644 > > --- a/Makefile > > +++ b/Makefile > > @@ -373,10 +373,10 @@ ifneq ($(dep_includes),) > > endif > > > > show_gui_make: > > - @echo "*** to build the gui, type \"make gui\" ***" > > + @echo "Note: to build the gui, type \"make gui\"" > > > > show_gui_done: > > - @echo "*** gui build complete ***" > > + @echo "gui build complete" > > > > PHONY += show_gui_make > > > > @@ -397,7 +397,7 @@ install_cmd: all_cmd install_plugins > > $(INSTALL) trace-cmd '$(bindir_SQ)' > > > > install: install_cmd > > - @echo "*** to install the gui, type \"make install_gui\" ***" > > + @echo "Note: to install the gui, type \"make install_gui\"" > > > > install_gui: install_cmd gui > > $(INSTALL) -d -m 755 '$(bindir_SQ)' > > diff --git a/README b/README > > index 7ac4390..d191197 100644 > > --- a/README > > +++ b/README > > @@ -9,3 +9,29 @@ These files also make up the code to create the > libraries > > The applications are licensed under the GNU General Public License > 2.0 > > (see COPYING) and the libraries are licensed under the GNU > > Lesser General Public License 2.1 (See COPYING.LIB). > > + > > +BUILDING: > > + > > +To make trace-cmd > > + make > > + > > +To make the gui > > + make gui > > + > > +INSTALL: > > + > > +To install trace-cmd > > + make install > > + > > +To install the gui > > + make install_gui > > + > > +Note: The default install is relative to /usr/local > > + The default install directory is /usr/local/bin > > + The default plugin directory is > /usr/local/share/trace-cmd/plugins > > + > > +To change the default, you can set 'prefix', eg > > +mkdir $HOME/test-trace > > +make prefix=$HOME/test-trace > > +make prefix=$HOME/test-trace install > > Looks good, but I would use the example of this: > > make prefix=~ > make prefix=~ install > > The above would install the executables into your home directory > ~/bin > and the plugins into ~/.trace-cmd/plugins > That is an oddity, I tried to show a general case. We could append more info about that special case if you wish. ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] trace-cmd: Add BUILDING and INSTALL instructions to README 2010-03-25 14:23 ` John Kacur @ 2010-03-25 14:46 ` Steven Rostedt 0 siblings, 0 replies; 3+ messages in thread From: Steven Rostedt @ 2010-03-25 14:46 UTC (permalink / raw) To: John Kacur; +Cc: lkml, Clark Williams, Darren Hart On Thu, 2010-03-25 at 10:23 -0400, John Kacur wrote: > ----- "Steven Rostedt" <rostedt@goodmis.org> wrote: > > > On Thu, 2010-03-25 at 10:24 +0100, John Kacur wrote: > > > - Add BUILDING and INSTALL instructions to the README > > > - Change Makefile so that messages don't appear like errors. > > > > Thanks, > > > > Did you rebase your repo or do I need to pull in the other patches > > from > > the mbox? > > I rebased the repo and did a push -f > Thanks I'll pull it. > > > + > > > +Note: The default install is relative to /usr/local > > > + The default install directory is /usr/local/bin > > > + The default plugin directory is > > /usr/local/share/trace-cmd/plugins > > > + > > > +To change the default, you can set 'prefix', eg > > > +mkdir $HOME/test-trace > > > +make prefix=$HOME/test-trace > > > +make prefix=$HOME/test-trace install > > > > Looks good, but I would use the example of this: > > > > make prefix=~ > > make prefix=~ install > > > > The above would install the executables into your home directory > > ~/bin > > and the plugins into ~/.trace-cmd/plugins > > > > > That is an oddity, I tried to show a general case. > We could append more info about that special case if you wish. Yeah, it was the default case ;-) The general case would probably be better to: make prefix=/usr -- Steve ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-03-25 14:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1269509057-4336-1-git-send-email-jkacur@redhat.com>
2010-03-25 13:31 ` [PATCH] trace-cmd: Add BUILDING and INSTALL instructions to README Steven Rostedt
2010-03-25 14:23 ` John Kacur
2010-03-25 14:46 ` Steven Rostedt
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox