Browse Source

Andreas V. Meier:


			
			
				rocklinux
			
			
		
Andreas V. 'netrunner' Meier 20 years ago
parent
commit
679146d1b5
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      package/rene/boost/boost.conf

+ 8
- 0
package/rene/boost/boost.conf

@ -30,6 +30,14 @@ yam_cm ()
find bin/boost/libs/ -type f -a \( -name '*.so.*' -o -name '*.a' \) \ find bin/boost/libs/ -type f -a \( -name '*.so.*' -o -name '*.a' \) \
-exec cp -v \{\} $libdir \; -exec cp -v \{\} $libdir \;
for i in $libdir/libboost_*-gcc-1_31.{so,a}*; do
file=$(basename $i)
ln -svf $file ${i/-gcc-1_31/}
if [[ "$file" == *.so.* ]]; then
ln -svf $file ${i/-gcc-1_31.so.*/.so}
fi
done
find boost/ -type f | while read file ; do find boost/ -type f | while read file ; do
mkdir -v -p $includedir/`dirname $file` mkdir -v -p $includedir/`dirname $file`

Loading…
Cancel
Save