Module Name: src
Committed By: mrg
Date: Sat Jul 2 14:03:21 UTC 2011
Modified Files:
src/external/lgpl3/gmp: build-gmp-Makefile.inc.awk
Log Message:
also match .s and .S files for asm sources.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/lgpl3/gmp/build-gmp-Makefile.inc.awk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/lgpl3/gmp/build-gmp-Makefile.inc.awk
diff -u src/external/lgpl3/gmp/build-gmp-Makefile.inc.awk:1.2 src/external/lgpl3/gmp/build-gmp-Makefile.inc.awk:1.3
--- src/external/lgpl3/gmp/build-gmp-Makefile.inc.awk:1.2 Wed Jun 29 05:18:32 2011
+++ src/external/lgpl3/gmp/build-gmp-Makefile.inc.awk Sat Jul 2 14:03:20 2011
@@ -16,7 +16,7 @@
} else {
c_src_list[$5] = $3
}
- } else if (match($3, /\.asm$/)) {
+ } else if (match($3, /\.(asm|s|S)$/)) {
asm_list[$5] = $3
}
}