Skip to content

Commit 8753cb3

Browse files
committed
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 7ac3667 commit 8753cb3

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
@@ -461,10 +461,12 @@ persist-settings: distclean
461461
echo STD=$(STD) >> .make-settings
462462
echo WARN=$(WARN) >> .make-settings
463463
echo OPT=$(OPT) >> .make-settings
464+
echo PROG_SUFFIX=$(PROG_SUFFIX) >> .make-settings
464465
echo MALLOC=$(MALLOC) >> .make-settings
465466
echo BUILD_TLS=$(BUILD_TLS) >> .make-settings
466467
echo BUILD_RDMA=$(BUILD_RDMA) >> .make-settings
467468
echo USE_SYSTEMD=$(USE_SYSTEMD) >> .make-settings
469+
echo USE_FAST_FLOAT=$(USE_FAST_FLOAT) >> .make-settings
468470
echo CFLAGS=$(CFLAGS) >> .make-settings
469471
echo LDFLAGS=$(LDFLAGS) >> .make-settings
470472
echo SERVER_CFLAGS=$(SERVER_CFLAGS) >> .make-settings

0 commit comments

Comments
 (0)