Skip to content

Commit 761fba2

Browse files
authored
Fix persisting missing make variables (#2881)
Persist USE_FAST_FLOAT and PROG_SUFFIX to prevent a complete rebuild next time someone types make or make test without specifying variables. Fixes #2880 Signed-off-by: Viktor Söderqvist <[email protected]>
1 parent d16788e commit 761fba2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -469,10 +469,12 @@ persist-settings: distclean
469469
echo STD=$(STD) >> .make-settings
470470
echo WARN=$(WARN) >> .make-settings
471471
echo OPT=$(OPT) >> .make-settings
472+
echo PROG_SUFFIX=$(PROG_SUFFIX) >> .make-settings
472473
echo MALLOC=$(MALLOC) >> .make-settings
473474
echo BUILD_TLS=$(BUILD_TLS) >> .make-settings
474475
echo BUILD_RDMA=$(BUILD_RDMA) >> .make-settings
475476
echo USE_SYSTEMD=$(USE_SYSTEMD) >> .make-settings
477+
echo USE_FAST_FLOAT=$(USE_FAST_FLOAT) >> .make-settings
476478
echo CFLAGS=$(CFLAGS) >> .make-settings
477479
echo LDFLAGS=$(LDFLAGS) >> .make-settings
478480
echo SERVER_CFLAGS=$(SERVER_CFLAGS) >> .make-settings

0 commit comments

Comments
 (0)