summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2008-12-06 00:14:41 +0000
committerChris Wilson <chris+github@qwirx.com>2008-12-06 00:14:41 +0000
commitf1b6123f229026ae11f6f01a4c293253d58cfb4b (patch)
treeeb8ec64016423ab205eb5dff505221902753e642
parentb3151de0cc8a076678b7d2226d250a2f6084eb03 (diff)
More backslashes, I said, MORE BACKSLASHES!
-rwxr-xr-xinfrastructure/makebuildenv.pl.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/infrastructure/makebuildenv.pl.in b/infrastructure/makebuildenv.pl.in
index 52ae9328..edd96063 100755
--- a/infrastructure/makebuildenv.pl.in
+++ b/infrastructure/makebuildenv.pl.in
@@ -405,8 +405,8 @@ for my $mod (@implicit_deps, @modules)
print TESTFILE <<__E;
kill_process()
{
- test -r testfiles/$1.pid \
- && /bin/kill -0 -f `cat testfiles/$1.pid` \
+ test -r testfiles/$1.pid \\
+ && /bin/kill -0 -f `cat testfiles/$1.pid` \\
&& /bin/kill -f `cat testfiles/$1.pid`
}
__E
@@ -416,8 +416,8 @@ __E
print TESTFILE <<__E;
kill_process()
{
- test -r testfiles/$1.pid \
- && kill -0 `cat testfiles/$1.pid` \
+ test -r testfiles/$1.pid \\
+ && kill -0 `cat testfiles/$1.pid` \\
&& kill `cat testfiles/$1.pid`
}
__E