shithub: kwa

Download patch

ref: 83a948f226f910ddabb573499996f55502d19b23
parent: 3f08396b3cd829037e9b27ab5500576b28773258
author: qwx <qwx@sciops.net>
date: Tue Jan 6 04:54:03 EST 2026

test/T.lilly: fix breaking typo when paths contain slashes

--- a/test/T.lilly
+++ b/test/T.lilly
@@ -23,6 +23,6 @@
 
 echo `{cat lilly.progs | wc -l} tests
 
-sed -e 's/'^$oldawk^'://' -e 's/Syntax/syntax/' -e '/warning:/d' foo1 >foo.glop1
-sed 's/'^$awk^'://' foo2 >foo.glop2
+sed -e 's#'^$oldawk^':##' -e 's/Syntax/syntax/' -e '/warning:/d' foo1 >foo.glop1
+sed 's#'^$awk^':##' foo2 >foo.glop2
 diff foo.glop1 foo.glop2 >foo.lilly.diff || echo 'BAD: check foo.lilly.diff'
--