From aa12b62e7e6002d7e6c2edb73153740075f8c686 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 26 May 2024 14:51:53 +0100 Subject: [PATCH] Fix compile script --- compile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compile b/compile index 6983f6f..36400d0 100755 --- a/compile +++ b/compile @@ -12,8 +12,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