From: mathieu.desnoyers@efficios.com (Mathieu Desnoyers)
Subject: [lttng-dev] [PATCH lttng-ust 1/2] Fix: lttng-gen-tp: only replace file extension
Date: Tue, 19 Sep 2017 17:07:52 +0000 (UTC) [thread overview]
Message-ID: <1971304394.13635.1505840872725.JavaMail.zimbra@efficios.com> (raw)
In-Reply-To: <20170919160834.23713-1-jonathan.rajotte-julien@efficios.com>
Merged into master, 2.10, 2.9, thanks!
Mathieu
----- On Sep 19, 2017, at 12:08 PM, Jonathan Rajotte jonathan.rajotte-julien at efficios.com wrote:
> Previous replace was done on the complete path. A path containing
> .c or .o would result in a corrupted file path.
>
> Reported-by: Gunnar Strand <Gunnar.Strand at ericsson.com>
> Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien at efficios.com>
> ---
> tools/lttng-gen-tp | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/tools/lttng-gen-tp b/tools/lttng-gen-tp
> index b62cd990..6aa1bba1 100755
> --- a/tools/lttng-gen-tp
> +++ b/tools/lttng-gen-tp
> @@ -79,7 +79,9 @@ class CFile:
> def write(self):
> outputFile = open(self.outputFilename,"w")
>
> - headerFilename = self.outputFilename.replace(".c",".h")
> + headerFilename = self.outputFilename
> + if headerFilename.endswith(".c"):
> + headerFilename = headerFilename[:-2] + ".h"
>
> outputFile.write(CFile.FILE_TPL.format(
> headerFilename = headerFilename))
> @@ -126,7 +128,10 @@ class ObjFile:
> return cc
>
> def write(self):
> - cFilename = self.outputFilename.replace(".o",".c")
> + cFilename = self.outputFilename
> + if cFilename.endswith(".o"):
> + cFilename = cFilename[:-2] + ".c"
> +
> cc = self._detectCC()
> if cc == "":
> raise RuntimeError("No C Compiler detected")
> --
> 2.11.0
--
Mathieu Desnoyers
EfficiOS Inc.
http://www.efficios.com
prev parent reply other threads:[~2017-09-19 17:07 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-19 16:08 Jonathan Rajotte
2017-09-19 16:08 ` [lttng-dev] [PATCH lttng-ust 2/2] lttng-gen-tp: formatting Jonathan Rajotte
2017-09-19 17:08 ` Mathieu Desnoyers
2017-09-19 17:07 ` Mathieu Desnoyers [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1971304394.13635.1505840872725.JavaMail.zimbra@efficios.com \
--to=mathieu.desnoyers@efficios.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox