Changeset 824
- Timestamp:
- 03/11/08 16:03:40 (6 months ago)
- Files:
-
- trunk/createStaticLibs.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/createStaticLibs.sh
r823 r824 14 14 fi 15 15 16 what /usr/bin/ld | grep ld64-77 17 no_pic=$? 16 if what /usr/bin/ld | grep -q ld64-77; then 17 no_pic=0 18 else 19 no_pic=1 20 fi 18 21 19 if [ $no_pic ]; then22 if [ $no_pic -gt 0 ]; then 20 23 sdkflags="$sdkflags -mdynamic-no-pic" # ld can't handle -fno-pic on ppc 21 24 else … … 65 68 fi 66 69 67 if [ ! $no_pic ]; then70 if [ $no_pic -eq 0 ] ; then 68 71 (cd ffmpeg; patch -p1 < ../Patches/ffmpeg-pic.diff) 69 72 fi
