diff options
| author | Po Lu | 2024-06-30 12:11:32 +0800 |
|---|---|---|
| committer | Po Lu | 2024-06-30 12:11:32 +0800 |
| commit | c8473ee8c1914d15fb19207215f0a06c84d0915c (patch) | |
| tree | d8651713ce4c38cc762080c6c8b062f4de6e4242 | |
| parent | cab91300d0df2250bc80c0cba15691fe5f8172fb (diff) | |
| download | emacs-c8473ee8c1914d15fb19207215f0a06c84d0915c.tar.gz emacs-c8473ee8c1914d15fb19207215f0a06c84d0915c.zip | |
* build-aux/ndk-module-extract.awk: Do not generate newlines in output.
| -rw-r--r-- | build-aux/ndk-module-extract.awk | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/build-aux/ndk-module-extract.awk b/build-aux/ndk-module-extract.awk index 6ff30973d67..b57bf74001d 100644 --- a/build-aux/ndk-module-extract.awk +++ b/build-aux/ndk-module-extract.awk | |||
| @@ -55,14 +55,14 @@ | |||
| 55 | /^End$/ { | 55 | /^End$/ { |
| 56 | if (name == MODULE && (kind == "shared" || kind == "static")) | 56 | if (name == MODULE && (kind == "shared" || kind == "static")) |
| 57 | { | 57 | { |
| 58 | printf "module_name=%s\n", name | 58 | printf "module_name=%s;", name |
| 59 | printf "module_kind=%s\n", kind | 59 | printf "module_kind=%s;", kind |
| 60 | printf "module_src=\"%s\"\n", src | 60 | printf "module_src=\"%s\";", src |
| 61 | printf "module_includes=\"%s\"\n", includes | 61 | printf "module_includes=\"%s\";", includes |
| 62 | printf "module_cflags=\"%s\"\n", cflags | 62 | printf "module_cflags=\"%s\";", cflags |
| 63 | printf "module_ldflags=\"%s\"\n", ldflags | 63 | printf "module_ldflags=\"%s\";", ldflags |
| 64 | printf "module_target=\"%s\"\n", target | 64 | printf "module_target=\"%s\";", target |
| 65 | printf "module_cxx_deps=\"%s\"\n", cxx_deps | 65 | printf "module_cxx_deps=\"%s\";", cxx_deps |
| 66 | } | 66 | } |
| 67 | 67 | ||
| 68 | src = "" | 68 | src = "" |
| @@ -83,6 +83,6 @@ | |||
| 83 | imports = "" | 83 | imports = "" |
| 84 | # Strip off leading whitespace. | 84 | # Strip off leading whitespace. |
| 85 | gsub (/^[ \t]+/, "", makefile_imports) | 85 | gsub (/^[ \t]+/, "", makefile_imports) |
| 86 | printf "module_imports=\"%s\"\n", makefile_imports | 86 | printf "module_imports=\"%s\";", makefile_imports |
| 87 | makefile_imports = "" | 87 | makefile_imports = "" |
| 88 | } | 88 | } |