From: David Aguilar <davvid@gmail.com>
To: Brian Gernhardt <brian@gernhardtsoftware.com>
Cc: Git List <git@vger.kernel.org>, Junio C Hamano <gitster@pobox.com>
Subject: Re: [PATCH] Makefile: Remove excess backslashes from sed
Date: Thu, 8 Apr 2010 23:04:28 -0700 [thread overview]
Message-ID: <20100409060427.GA6012@gmail.com> (raw)
In-Reply-To: <1270783330-35215-1-git-send-email-brian@gernhardtsoftware.com>
On Thu, Apr 08, 2010 at 11:22:10PM -0400, Brian Gernhardt wrote:
> The sed script that was intended to add lines altering the sys.path
> had extra backslashes in them. Instead resulting [snip]
> import sys; \ import os; \ sys.path.insert( ... )
On linux sed I get (or I was dreaming when I tried it):
import sys; \
import os; \
sys.path.insert(0, os.getenv(foo,
bar))
We should instead smash it all into one line instead to
avoid differences in sed behavior:
import sys; import os; sys.path.insert(0, os.getenv(foo,
bar))
If that's what it is, then your patch would produce this on
linux:
import sys;
import os;
sys.path.insert(foo,
bar)
...which is invalid syntax.
So let's smash it all onto one line instead. That way I don't
have to think about or test whether there's any difference in
how sed handles newlines. It'll be the Obviously Correct(tm)
sol'n. Or maybe I was dreaming?
If you don't beat me to it by the tomorrow night I'll try and
throw together a patch. Thanks for catching this.
> diff --git a/Makefile b/Makefile
> index f0fe351..b9eb1ca 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -1632,8 +1632,8 @@ $(patsubst %.py,%,$(SCRIPT_PYTHON)): % : %.py
> sed -e '1{' \
> -e ' s|#!.*python|#!$(PYTHON_PATH_SQ)|' \
> -e '}' \
> - -e 's|^import sys.*|&; \\\
> - import os; \\\
> + -e 's|^import sys.*|&; \
> + import os; \
> sys.path.insert(0, os.getenv("GITPYTHONLIB",\
> "@@INSTLIBDIR@@"));|' \
--
David
next prev parent reply other threads:[~2010-04-09 5:48 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-04-09 3:22 [PATCH] Makefile: Remove excess backslashes from sed Brian Gernhardt
2010-04-09 5:57 ` Junio C Hamano
2010-04-09 8:02 ` David Aguilar
2010-04-09 8:42 ` [PATCH] Makefile: Avoid multi-line sed when building python scripts David Aguilar
2010-04-09 14:33 ` [PATCH] Makefile: Remove excess backslashes from sed Brian Gernhardt
2010-04-09 15:34 ` Sverre Rabbelier
2010-04-09 15:35 ` [PATCH] Makefile: Simplify handling of python scripts Brian Gernhardt
2010-04-09 6:04 ` David Aguilar [this message]
-- strict thread matches above, loose matches on Subject: below --
2010-04-09 14:41 [PATCH] Makefile: Remove excess backslashes from sed Brian Gernhardt
2010-04-09 14:44 ` Brian Gernhardt
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=20100409060427.GA6012@gmail.com \
--to=davvid@gmail.com \
--cc=brian@gernhardtsoftware.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.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;
as well as URLs for NNTP newsgroup(s).