commit e279477dae1216b8951b3a2e03d34dd1528959c5
parent d990eed7b47605eb8d5e125f3559d521b20d0777
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Wed, 22 Nov 2023 09:59:24 +0100
Correct prerequiste checks
Due to an unfortunate copy/paste where we thought we were checking for
Star-2D, we're actually checking RSys.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -58,7 +58,7 @@ libsenc2d.o: $(OBJ)
.config: config.mk
@if ! $(PKG_CONFIG) --atleast-version $(RSYS_VERSION) rsys; then \
echo "rsys $(RSYS_VERSION) not found" >&2; exit 1; fi
- @if ! $(PKG_CONFIG) --atleast-version $(S2D_VERSION) rsys; then \
+ @if ! $(PKG_CONFIG) --atleast-version $(S2D_VERSION) s2d; then \
echo "s2d $(S2D_VERSION) not found" >&2; exit 1; fi
@echo "config done" > $@