[Box Backup-commit] COMMIT r2404 - box/trunk/infrastructure
boxbackup-dev@boxbackup.org
boxbackup-dev@boxbackup.org
Sat, 6 Dec 2008 00:14:42 +0000 (GMT)
Author: chris
Date: 2008-12-06 00:14:41 +0000 (Sat, 06 Dec 2008)
New Revision: 2404
Modified:
box/trunk/infrastructure/makebuildenv.pl.in
Log:
More backslashes, I said, MORE BACKSLASHES!
Modified: box/trunk/infrastructure/makebuildenv.pl.in
===================================================================
--- box/trunk/infrastructure/makebuildenv.pl.in 2008-12-05 23:37:00 UTC (rev 2403)
+++ box/trunk/infrastructure/makebuildenv.pl.in 2008-12-06 00:14:41 UTC (rev 2404)
@@ -405,8 +405,8 @@
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 @@
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