From 256a65f5b362d3c6fceb154d9804028758498c2c Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 26 May 2024 14:49:19 +0100 Subject: [PATCH] Fix compile script --- compile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compile b/compile index 5b91d66..1f9f224 100755 --- a/compile +++ b/compile @@ -13,8 +13,8 @@ LIBS="\ $(pkg-config --libs sdl2) \ " SRC="\ - $(find ./src -name *.c | xargs -I{} echo -n "{} ") \ - $(find intern/wizapp/src -type f -name *.c | xargs -I{} echo -n "{} ") \ + $(find ./src -name "*.c" | xargs -I{} echo -n "{} ") \ + $(find intern/wizapp/src -type f -name "*.c" | xargs -I{} echo -n "{} ") \ " OUT=tiffread