From 8781660aa93e963fcbb3f2375a6c531d8bddb215 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 20 Feb 2006 20:11:08 +0000 Subject: [PATCH] Set the install permissions correctly --- Makefile.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.in b/Makefile.in index 2d635c7e6..eb8fd253d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -64,20 +64,20 @@ install-hdrs: $(SHELL) $(auxdir)/mkinstalldirs $(includedir)/SDL for src in $(srcdir)/include/*.h; do \ file=`echo $$src | sed -e 's|^.*/||'`; \ - $(INSTALL) $$src $(includedir)/SDL/$$file; \ + $(INSTALL) -m 644 $$src $(includedir)/SDL/$$file; \ done - $(INSTALL) include/SDL_config.h $(includedir)/SDL/SDL_config.h + $(INSTALL) -m 644 include/SDL_config.h $(includedir)/SDL/SDL_config.h install-lib: $(SHELL) $(auxdir)/mkinstalldirs $(libdir) $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(libdir)/$(TARGET) install-data: $(SHELL) $(auxdir)/mkinstalldirs $(datadir)/aclocal - $(INSTALL) $(srcdir)/sdl.m4 $(datadir)/aclocal/sdl.m4 + $(INSTALL) -m 644 $(srcdir)/sdl.m4 $(datadir)/aclocal/sdl.m4 install-man: $(SHELL) $(auxdir)/mkinstalldirs $(mandir)/man3 for src in $(srcdir)/docs/man3/*.3; do \ file=`echo $$src | sed -e 's|^.*/||'`; \ - $(INSTALL) $$src $(mandir)/man3/$$file; \ + $(INSTALL) -m 644 $$src $(mandir)/man3/$$file; \ done uninstall: uninstall-bin uninstall-hdrs uninstall-lib uninstall-man