mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Don't use pax for installing header files. Use the install program instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20213 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
170b217b10
commit
2edabc00dc
@ -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::
|
||||
|
Loading…
Reference in New Issue
Block a user