http://llvm.org/bugs/show_bug.cgi?id=19410
Bug ID: 19410
Summary: [R3.4.1] tools/clang/include/clang-c/Makefile aborts
on Open Solaris 11
Product: Build scripts
Version: 3.4
Hardware: Sun
OS: Solaris
Status: NEW
Severity: normal
Priority: P
Component: Makefiles
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected]
Classification: Unclassified
There is a multi line backquote in the Makefile here
(starting with `find clang-c -type f ...):
ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
$(Verb) if test -d "$(PROJ_OBJ_ROOT)/tools/clang/include/clang-c" ;
then \
cd $(PROJ_OBJ_ROOT)/tools/clang/include && \
for hdr in `find clang-c -type f '!' '(' -name 'Makefile' ')' -print
\
| grep -v CVS | grep -v .tmp | grep -v .dir` ; do \
instdir=`dirname "$(IntIncludeDir)/$$hdr"` ; \
if test \! -d "$$instdir" ; then \
$(EchoCmd) Making install directory $$instdir ; \
$(MKDIR) $$instdir ;\
fi ; \
$(DataInstall) $$hdr $(IntIncludeDir)/$$hdr ; \
done ; \
fi
endif
This fails in Solaris 11 (Virtual Box).
It works, after joining the lines into a single line.
rgds,
Frank
--
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs