From: Ian Jackson Date: Tue, 10 Mar 2020 14:50:20 +0000 (+0000) Subject: build system: Do not install .tcl files +x X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=8dd16b67019b5bcf549e229a3f25c95b62fa4ba5;p=chiark-tcl-applet.git build system: Do not install .tcl files +x install(8) does this by default. Bah. Signed-off-by: Ian Jackson --- diff --git a/Makefile b/Makefile index 603b24e..11b519e 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,7 @@ INSTALL ?= install INSTALL_SCRIPT ?= $(INSTALL) -m 755 +INSTALL_DATA ?= $(INSTALL) -m 644 prefix ?= /usr/local @@ -30,7 +31,7 @@ tmp/%: % tmp install: all $(INSTALL) -d $(addprefix $(DESTDIR), $(bindir) $(sharedir)) $(INSTALL_SCRIPT) $(SEDDED_SCRIPTS) $(DESTDIR)$(bindir) - $(INSTALL) $(TCLLIBS) $(DESTDIR)$(sharedir) + $(INSTALL_DATA) $(TCLLIBS) $(DESTDIR)$(sharedir) clean: rm -rf tmp