1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Don't use pax for installing header files. Use the install program instead.

llvm-svn: 20213
This commit is contained in:
Reid Spencer 2005-02-16 15:54:03 +00:00
parent 28bc9d3fe9
commit 2cfc6b1799

View File

@ -1463,14 +1463,16 @@ install-local::
$(Verb) $(MKDIR) $(PROJ_includedir)
$(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
cd $(PROJ_SRC_ROOT)/include && \
find . -path '*/Internal' -prune -o '(' -type f \
'!' '(' -name '*~' -o -name '.cvsignore' -o -name '.#*' -o -name '*.in' ')' \
-print ')' | grep -v CVS | pax -rwdvpe $(PROJ_includedir) ; \
for hdr in `find . -type f '!' '(' -name '*~' -o -name '.cvsignore' \
-o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS ` ; do \
$(INSTALL) $$hdr $(PROJ_includedir) ; \
done ; \
fi
$(Verb) if [ -d "$(PROJ_OBJ_ROOT)/include" ] ; then \
cd $(PROJ_OBJ_ROOT)/include && ( cd $(PROJ_SRC_ROOT)/include && \
find . -path '*/Internal' -prune -o '(' -type f -name '*.in' -print ')' ) \
| sed 's#.in$$##' | pax -rwdvpe $(PROJ_includedir) ; \
cd $(PROJ_OBJ_ROOT)/include && \
for hdr in `find . -type f -print` ; do \
$(INSTALL) $$hdr $(PROJ_includedir) ; \
done ; \
fi
uninstall-local::