Commit cf9cb951 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* part of patch was applied upstream. Adapt....

parent 6cee98c6
...@@ -10,15 +10,9 @@ diff -ru ffmpeg.orig/configure ffmpeg/configure ...@@ -10,15 +10,9 @@ diff -ru ffmpeg.orig/configure ffmpeg/configure
CFLAGS="$CFLAGS -fno-expensive-optimizations" CFLAGS="$CFLAGS -fno-expensive-optimizations"
;; ;;
esac esac
@@ -370,11 +370,11 @@ @@ -374,11 +374,11 @@
;; ;;
--make=*) make=`echo $opt | cut -d '=' -f 2` --extra-ldflags=*) LDFLAGS="$LDFLAGS ${opt#--extra-ldflags=}"
;;
- --extra-cflags=*) CFLAGS="${opt#--extra-cflags=}"
+ --extra-cflags=*) CFLAGS="$CFLAGS ${opt#--extra-cflags=}"
;;
- --extra-ldflags=*) LDFLAGS=${opt#--extra-ldflags=}
+ --extra-ldflags=*) LDFLAGS="$LDFLAGS ${opt#--extra-ldflags=}"
;; ;;
- --extra-libs=*) extralibs=${opt#--extra-libs=} - --extra-libs=*) extralibs=${opt#--extra-libs=}
+ --extra-libs=*) extralibs="$extralibs ${opt#--extra-libs=}" + --extra-libs=*) extralibs="$extralibs ${opt#--extra-libs=}"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment