diff options
author | hiramatu <hiramatu> | 2007-10-19 20:04:35 +0000 |
---|---|---|
committer | hiramatu <hiramatu> | 2007-10-19 20:04:35 +0000 |
commit | 982b7e1512c618617f56e276a86519c8c45a131b (patch) | |
tree | 68f3b9357881deb7f3ddddbcd643a5e493bc4480 /Makefile.am | |
parent | 1673e81efbe105a5645d180eee487f3f24950619 (diff) | |
download | systemtap-steved-982b7e1512c618617f56e276a86519c8c45a131b.tar.gz systemtap-steved-982b7e1512c618617f56e276a86519c8c45a131b.tar.xz systemtap-steved-982b7e1512c618617f56e276a86519c8c45a131b.zip |
2007-10-19 Masami Hiramatsu <mhiramat@redhat.com>
* staplog.c: Cleanup code and remove end-of-line spaces.
(create_output_filename): Use snprintf instead of sprintf and remove
malloc().
(print_rchan_info): Merge into output_cpu_logs().
(open_output_file): Use GETBUF() instead of malloc().
(output_cpu_logs): Simplify logic and remove unused code.
(do_staplog): Merge into cmd_staplog().
(help_staplog): Fix typos.
* Makefile.am (STAPLOG): Add -Wall option.
* Makefile.in: Regenerated.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 2da4da73..df86dc80 100644 --- a/Makefile.am +++ b/Makefile.am @@ -88,7 +88,7 @@ if BUILD_CRASHMOD STAPLOG=staplog.so $(STAPLOG): staplog.c - $(CC) -shared -rdynamic $(LDFLAGS) $(CFLAGS) -fPIC -o $@ $< + $(CC) -Wall -shared -rdynamic $(LDFLAGS) $(CFLAGS) -fPIC -o $@ $< all-local: $(STAPLOG) install-exec-local: $(STAPLOG) -$(MKDIR_P) $(DESTDIR)$(pkglibdir) |