diff options
author | Jan Nieuwenhuizen <janneke@gnu.org> | 2005-06-27 11:52:17 +0000 |
---|---|---|
committer | Jan Nieuwenhuizen <janneke@gnu.org> | 2005-06-27 11:52:17 +0000 |
commit | febf7bcbc4c511490d9d9905e4f47912a30bf2e2 (patch) | |
tree | 5ba0131681c9ae4029e3e7f111e7dbc6a3ba7b3a | |
parent | a3ee15ee652ba15dd03bda1547991d618c63434a (diff) |
(OUT_POSTREMOVES): Reinclude install script
rule, errorneously removed probably because of misleading comment.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | cygwin/GNUmakefile | 4 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2005-06-27 Jan Nieuwenhuizen <janneke@gnu.org> + + * cygwin/GNUmakefile (OUT_POSTREMOVES): Reinclude install script + rule, errorneously removed probably because of misleading comment. + 2005-06-27 Han-Wen Nienhuys <hanwen@xs4all.nl> * Documentation/topdocs/INSTALL.texi (Top): remove EC fonts requirement. diff --git a/cygwin/GNUmakefile b/cygwin/GNUmakefile index ecfe3b5171..1cdec730ab 100644 --- a/cygwin/GNUmakefile +++ b/cygwin/GNUmakefile @@ -21,6 +21,10 @@ OUT_POSTINSTALLS=$(POSTINSTALLS:%=$(outdir)/%) POSTREMOVES=$(wildcard postremove*.sh) OUT_POSTREMOVES=$(POSTREMOVES:%=$(outdir)/%) +$(outdir)/%.sh: %.sh $(config_make) + cat $< | sed $(sed-atvariables) > $@ + chmod 755 $@ + default: $(OUT_POSTINSTALLS) $(OUT_POSTREMOVES) $(OUTIN_FILES) INSTALLATION_OUT_SUFFIXES=1 |