don't use non-standard sed -i option
Originally committed as revision 7321 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0cd4faf977
commit
c505dd3191
10
configure
vendored
10
configure
vendored
@ -393,6 +393,12 @@ require(){
|
|||||||
check_lib $header $func "$@" || die "ERROR: $name not found"
|
check_lib $header $func "$@" || die "ERROR: $name not found"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
apply(){
|
||||||
|
file=$1
|
||||||
|
shift
|
||||||
|
"$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
|
||||||
|
}
|
||||||
|
|
||||||
CONFIG_LIST='
|
CONFIG_LIST='
|
||||||
encoders
|
encoders
|
||||||
decoders
|
decoders
|
||||||
@ -2105,6 +2111,6 @@ if test "$swscaler" != "no"; then
|
|||||||
else
|
else
|
||||||
pkgconfig_generate libswscale "FFmpeg image rescaling library" "$sws_version" "" "$pkg_requires libavcodec = $lavc_version" swscale
|
pkgconfig_generate libswscale "FFmpeg image rescaling library" "$sws_version" "" "$pkg_requires libavcodec = $lavc_version" swscale
|
||||||
pkgconfig_generate_uninstalled libswscale "FFmpeg image rescaling library" "$sws_version" "" "$pkg_requires libavcodec = $lavc_version"
|
pkgconfig_generate_uninstalled libswscale "FFmpeg image rescaling library" "$sws_version" "" "$pkg_requires libavcodec = $lavc_version"
|
||||||
sed -i s/^Libs:.*$/Libs:/ libswscale.pc
|
apply libswscale.pc sed s/^Libs:.*$/Libs:/
|
||||||
sed -i s/^Libs:.*$/Libs:/ libswscale-uninstalled.pc
|
apply libswscale-uninstalled.pc sed s/^Libs:.*$/Libs:/
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user