diff options
| author | 2025-08-18 01:01:38 +0200 | |
|---|---|---|
| committer | 2025-08-18 01:01:38 +0200 | |
| commit | 156fb0c99955acff19ca2877ed5cc61078f0f480 (patch) | |
| tree | d159c958036826c6fc61799cfc25d2663080ae57 /Makefile | |
| parent | Merge pull request #1623 from tttuuu888/work-issue-1622 (diff) | |
Fix `LDFLAGS` Usage in Makefile
This PR fixes what appears to be a typo `LDFLAGS` written with an
additional `_` in the Makefile for setting the default linker flags for
`libjanet`.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -54,7 +54,7 @@ HOSTAR?=$(AR) # Symbols are (optionally) removed later, keep -g as default! CFLAGS?=-O2 -g LDFLAGS?=-rdynamic -LIBJANET_LDFLAGS?=$(LD_FLAGS) +LIBJANET_LDFLAGS?=$(LDFLAGS) RUN:=$(RUN) |
