diff options
| author | lu4nx | 2022-12-11 23:33:33 +0800 |
|---|---|---|
| committer | Yuan Fu | 2022-12-12 15:08:54 -0800 |
| commit | 5d4274d9b65d87fe7d672e7a930abd615f431f34 (patch) | |
| tree | 947a49c95ed5d46187f894b378a2d2746d45d219 /admin/notes | |
| parent | d264b75669d7d9d7ffe536a79af0ea34d8fd4b6a (diff) | |
| download | emacs-5d4274d9b65d87fe7d672e7a930abd615f431f34.tar.gz emacs-5d4274d9b65d87fe7d672e7a930abd615f431f34.zip | |
; * admin/notes/tree-sitter/build-module/build.sh: Add -fPIC.
(bug#59967)
Diffstat (limited to 'admin/notes')
| -rwxr-xr-x | admin/notes/tree-sitter/build-module/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/notes/tree-sitter/build-module/build.sh b/admin/notes/tree-sitter/build-module/build.sh index 3467be272b8..d020ee92c39 100755 --- a/admin/notes/tree-sitter/build-module/build.sh +++ b/admin/notes/tree-sitter/build-module/build.sh | |||
| @@ -46,7 +46,7 @@ cd "${sourcedir}" | |||
| 46 | 46 | ||
| 47 | ### Build | 47 | ### Build |
| 48 | 48 | ||
| 49 | cc -c -I. parser.c | 49 | cc -fPIC -c -I. parser.c |
| 50 | # Compile scanner.c. | 50 | # Compile scanner.c. |
| 51 | if test -f scanner.c | 51 | if test -f scanner.c |
| 52 | then | 52 | then |