summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortrz <trz>2006-04-12 22:58:17 +0000
committertrz <trz>2006-04-12 22:58:17 +0000
commitde2ca07e3fd2290c5a119f0c891d6474215ec95c (patch)
tree1e404a4425b482d69d509a5c5250bf07aa136899
parent931db0383e3c3e34888d5ea5a39bf6efe737ec5e (diff)
downloadsystemtap-steved-de2ca07e3fd2290c5a119f0c891d6474215ec95c.tar.gz
systemtap-steved-de2ca07e3fd2290c5a119f0c891d6474215ec95c.tar.xz
systemtap-steved-de2ca07e3fd2290c5a119f0c891d6474215ec95c.zip
Fix PR 2538
-rw-r--r--ChangeLog5
-rw-r--r--buildrun.cxx2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0d5a5e81..6a615670 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-04-12 Tom Zanussi <zanussi@us.ibm.com>
+ PR 2538
+ * buildrun.cxx (compile_pass): Remove space
+ between -I and runtime path.
+
2006-04-12 Martin Hunt <hunt@redhat.com>
PR 2497
* translate.cxx (translate_pass): Don't
diff --git a/buildrun.cxx b/buildrun.cxx
index 589555ac..37f079f2 100644
--- a/buildrun.cxx
+++ b/buildrun.cxx
@@ -72,7 +72,7 @@ compile_pass (systemtap_session& s)
// Assumes linux 2.6 kbuild
o << "CFLAGS += -Wno-unused -Werror" << endl;
- o << "CFLAGS += -I \"" << s.runtime_path << "\"" << endl;
+ o << "CFLAGS += -I\"" << s.runtime_path << "\"" << endl;
o << "obj-m := " << s.module_name << ".o" << endl;
o.close ();