SDL_image: really fix 'make dist'

From 5b0068071a88e778e574a9f42ec25d3fd95a61a9 Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Sun, 8 May 2022 17:01:04 +0300
Subject: [PATCH] really fix 'make dist'

---
 Makefile.am  | 4 ++--
 Makefile.in  | 4 ++--
 Makefile.os2 | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index ca317fd..c57491a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -78,5 +78,5 @@ rpm: $(PACKAGE)-$(VERSION).tar.gz
 	rpmbuild -ta $(PACKAGE)-$(VERSION).tar.gz
 
 dist-hook:
-	-rm -rf `find $(distdir)/external -name .git*`
-	-rm -rf `find $(distdir)/external -name *.yml`
+	-rm -rf `find $(distdir)/external -name '.git*'`
+	-rm -rf `find $(distdir)/external -name '*.yml'`
diff --git a/Makefile.in b/Makefile.in
index 4d018da..90d20a7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1131,8 +1131,8 @@ rpm: $(PACKAGE)-$(VERSION).tar.gz
 	rpmbuild -ta $(PACKAGE)-$(VERSION).tar.gz
 
 dist-hook:
-	-rm -rf `find $(distdir)/external -name .git*`
-	-rm -rf `find $(distdir)/external -name *.yml`
+	-rm -rf `find $(distdir)/external -name '.git*'`
+	-rm -rf `find $(distdir)/external -name '*.yml'`
 
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.
diff --git a/Makefile.os2 b/Makefile.os2
index 2599f57..2038c11 100644
--- a/Makefile.os2
+++ b/Makefile.os2
@@ -43,7 +43,7 @@ CFLAGS+= -DBUILD_SDL
 # wanted formats:
 CFLAGS+= -DLOAD_JPG -DLOAD_PNG -DLOAD_BMP -DLOAD_GIF -DLOAD_LBM &
          -DLOAD_PCX -DLOAD_PNM -DLOAD_TGA -DLOAD_XCF -DLOAD_XPM &
-         -DLOAD_XV -DLOAD_SVG -DLOAD_TIF -DLOAD_WEBP -DLOAD_QOI 
+         -DLOAD_XV -DLOAD_SVG -DLOAD_TIF -DLOAD_WEBP -DLOAD_QOI
 
 CFLAGS+= -DSDL_BUILD_MAJOR_VERSION=$(MAJOR_VERSION)
 CFLAGS+= -DSDL_BUILD_MINOR_VERSION=$(MINOR_VERSION)