Make sure the gccas script is executable.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33851 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-02-04 00:23:51 +00:00
parent 006c6872fe
commit a3e60626b4

View File

@ -12,15 +12,17 @@ include $(LEVEL)/Makefile.common
install-local:: $(PROJ_bindir)/gccas
$(PROJ_bindir)/gccas : gccas.sh
$(PROJ_bindir)/gccas : gccas.sh Makefile
$(Echo)Installing gccas shell script.
$(Verb)sed "s#@TOOLDIR@#$(PROJ_bindir)#" $< > $@
$(Verb)chmod 0755 $@
all-local:: $(ToolDir)/gccas
$(ToolDir)/gccas : gccas.sh
$(ToolDir)/gccas : gccas.sh Makefile
$(Echo)Making $(ToolDir)/gccas shell script.
$(Verb)sed "s#@TOOLDIR@#$(ToolDir)#" $< > $@
$(Verb)chmod 0755 $@
clean-local::
$(Verb)$(RM) -f $(ToolDir)/gccas