Create symlinks for the static libs of GCC Agnostic packages.
Note: Should we create symlinks for the *.la libtool related files? git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37561 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
7bf351fce9
commit
1e4d65f578
@ -133,7 +133,10 @@ extractFile()
|
||||
if [ "$isGCCAgnostic" = "true" ] && [ $isHybridBuild ] ; then
|
||||
extractedLibs=`find "$extractDir/$extractedSubDir/" -name "*.so"`
|
||||
moreExtractedLibs=`find "$extractDir/$extractedSubDir/" -name "*.so.*"`
|
||||
createSymlinksForHybrid $extractedLibs $moreExtractedLibs
|
||||
staticLibs=`find "$extractDir/$extractedSubDir/" -name "*.a"`
|
||||
#NOTE: should we symlink libtool's *.la files?
|
||||
#laLibs=`find "$extractDir/$extractedSubDir/" -name "*.la"`
|
||||
createSymlinksForHybrid $extractedLibs $moreExtractedLibs $staticLibs
|
||||
fi
|
||||
|
||||
$cp -r "${sPrefix}$extractDir/$extractedSubDir/." "${tPrefix}$targetExtractedDir"
|
||||
|
Loading…
Reference in New Issue
Block a user