diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-04-24 15:39:53 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-04-24 15:39:53 +0200 |
commit | 235dc5090e697ec7727c3c7e4751df051f6420fb (patch) | |
tree | 16f20b4cf1fcce182463346195a8f2ee47a9047a /scripts/build/internals.sh | |
parent | 8c360cbfc4b223612d26e4d2d8c64a278888192e (diff) | |
download | crosstool-ng-235dc5090e697ec7727c3c7e4751df051f6420fb.tar.gz crosstool-ng-235dc5090e697ec7727c3c7e4751df051f6420fb.tar.bz2 crosstool-ng-235dc5090e697ec7727c3c7e4751df051f6420fb.zip |
internals/finish: do not remove ${PREFIX}/include
gcc installs the C++ headers in ${PREFIX}/include/ but we trash
that directory at the end of the build.
We previously removed that directory as it contained the companion
libraries header files. But it's been some time now that we isntall
the companion libraries in their own dedicated place, so we do not
need to remove that directory.
Until we have a better fix, just keep that directory for now.
Reported-by: Bob Rossi <bob@brasko.net>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'scripts/build/internals.sh')
-rw-r--r-- | scripts/build/internals.sh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/scripts/build/internals.sh b/scripts/build/internals.sh index d730e28a..c889a00a 100644 --- a/scripts/build/internals.sh +++ b/scripts/build/internals.sh @@ -98,9 +98,6 @@ do_finish() { CT_DoForceRmdir "${CT_DEBUGROOT_DIR}/"{,usr/}{,share/}{man,info} fi - # Remove headers installed by native companion libraries - CT_DoForceRmdir "${CT_PREFIX_DIR}/include" - # Remove the lib* symlinks, now: # The symlinks are needed only during the build process. # The final gcc will still search those dirs, but will also search |