diff options
author | Alexey Neyman <stilor@att.net> | 2017-04-22 23:35:05 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-04-22 23:35:05 -0700 |
commit | f4c94242d450eb84b3f6fb533e86a6eaacee3152 (patch) | |
tree | 7f42a16c75be897f1d65aecc35740ddae2ef0def | |
parent | c9dad337289153ee70d4ed264cf628f22f6ec2bb (diff) | |
download | crosstool-ng-f4c94242d450eb84b3f6fb533e86a6eaacee3152.tar.gz crosstool-ng-f4c94242d450eb84b3f6fb533e86a6eaacee3152.tar.bz2 crosstool-ng-f4c94242d450eb84b3f6fb533e86a6eaacee3152.zip |
Avoid installing configure.in.in
Signed-off-by: Alexey Neyman <stilor@att.net>
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 4c333432..82fcd540 100644 --- a/Makefile.in +++ b/Makefile.in @@ -274,14 +274,14 @@ install-lib: $(DESTDIR)$(libdir) \ LIB_SUB_DIR := config contrib patches scripts $(patsubst %,install-lib-%-copy,$(LIB_SUB_DIR)): install-lib-%-copy: $(DESTDIR)$(libdir) - $(call __silent,INSTDIR,$*)tar cf - --exclude='*.sh.in' $* \ + $(call __silent,INSTDIR,$*)tar cf - --exclude='*.sh.in' --exclude='*.in.in' $* \ |(cd "$(DESTDIR)$(libdir)"; tar xf -) # Dependency-only by default. $(patsubst %,install-lib-%,$(LIB_SUB_DIR)): install-lib-%: install-lib-%-copy install-lib-main: $(DESTDIR)$(libdir) $(patsubst %,install-lib-%,$(LIB_SUB_DIR)) - $(call __silent,INST,steps.mk)$(install) -m 644 steps.mk "$(DESTDIR)$(libdir)/steps.mk" + $(call __silent,INST,steps.mk)$(install) -m 644 steps.mk "$(DESTDIR)$(libdir)" $(call __silent,INST,paths.mk)$(install) -m 644 paths.mk "$(DESTDIR)$(libdir)" $(call __silent,INST,paths.sh)$(install) -m 644 paths.sh "$(DESTDIR)$(libdir)" |