wrowe 2002/07/02 08:12:03
Modified: test MakeWin32Make.awk
Log:
Any $(shell foo) garbage makes win32 NMAKE choke. Just strip out all
such invocations from the makefile.
Revision Changes Path
1.2 +1 -0 apr/test/MakeWin32Make.awk
Index: MakeWin32Make.awk
===================================================================
RCS file: /home/cvs/apr/test/MakeWin32Make.awk,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- MakeWin32Make.awk 13 May 2002 17:45:49 -0000 1.1
+++ MakeWin32Make.awk 2 Jul 2002 15:12:03 -0000 1.2
@@ -22,6 +22,7 @@
if ( match( $0, /[EMAIL PROTECTED]@/ ) ) {
$0 = "";
}
+ gsub( /\$\([^\)]* [^\)]*\)/, "", $0 );
gsub( /\$\{LD_FLAGS\}/, "", $0 );
gsub( /\.\.\/libapr\.la/, "../LibD/apr.lib", $0 );
gsub( /[EMAIL PROTECTED]@/, "del", $0 );