From: David McCullough Date: Tue, 14 Jul 2009 14:49:14 +0000 (+0000) Subject: the Makefile.in still refers to elf2flt.sh.in: X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=4fc877419b26de5bd6fe64e3c5ad4ca27e56dd49;p=elf2flt.git the Makefile.in still refers to elf2flt.sh.in: ld-elf2flt.sh: $(srcdir)/ld-elf2flt.sh.in that should be: ld-elf2flt.sh: $(srcdir)/ld-elf2flt.in the shell script is generated without +x bits, but that is fixed during the install step ... so probably not a real big problem Mike Frysinger --- diff --git a/Makefile.in b/Makefile.in index 66ce5a6..2e6b9ea 100644 --- a/Makefile.in +++ b/Makefile.in @@ -79,8 +79,9 @@ $(PROG_FLTHDR): flthdr.o compress.o stubs.o ld-elf2flt$(EXEEXT): ld-elf2flt.o stubs.o $(link) -ld-elf2flt.sh: $(srcdir)/ld-elf2flt.sh.in +ld-elf2flt.sh: $(srcdir)/ld-elf2flt.in ./config.status $@ + chmod 755 $@ Makefile: $(srcdir)/Makefile.in ./config.status $@