Browse Source

Andreas V. Meier:


			
			
				rocklinux
			
			
		
Andreas V. 'netrunner' Meier 20 years ago
parent
commit
3190c5d19b
1 changed files with 5 additions and 4 deletions
  1. +5
    -4
      package/rene/boost/boost.conf

+ 5
- 4
package/rene/boost/boost.conf

@ -25,14 +25,15 @@ yam_cm ()
( cd boost/regex/v4;
unzip -o $archdir/boost-1.31.0-regex-patch-20040503.zip; )
bjam "-sTOOLS=gcc"
PYVER="`python -V 2>&1 | sed 's/Python \([0-9]\.[0-9]\).*/\1/'`"
PYTHON_ROOT="$root/$prefix" PYTHON_VERSION="$PYVER" bjam "-sTOOLS=gcc"
find 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 \;
find boost/ -type f | while read file ; do
mkdir -p $includedir/`dirname $file`
cp $file $includedir/$file
mkdir -v -p $includedir/`dirname $file`
cp -v $file $includedir/$file
done
}

Loading…
Cancel
Save