Skip to content

Commit ea8d1f6

Browse files
committed
fix: meson setup commadn in build target in makefile
Signed-off-by: Christopher Arndt <[email protected]>
1 parent 95667de commit ea8d1f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ help:
2222

2323
build: $(SOURCES)
2424
if [[ -d "$(BUILDDIR)" ]]; then \
25-
meson setup --reconfigure "--prefix=$(PREFIX)" --buildtype=plain $(BUILDDIR); \
25+
meson setup --reconfigure "--prefix=$(PREFIX)" -Dbuildtype=plain $(BUILDDIR); \
2626
else \
27-
meson setup "--prefix=$(PREFIX)" --buildtype=plain $(BUILDDIR); \
27+
meson setup "--prefix=$(PREFIX)" -Dbuildtype=plain $(BUILDDIR); \
2828
fi
2929
meson compile -C $(BUILDDIR)
3030

0 commit comments

Comments
 (0)