summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-12-15 22:36:19 +0000
committerMåns Rullgård <mans@mansr.com>2006-12-15 22:36:19 +0000
commitc505dd319113a7f0f43830c6b1ea5fdc697cb1e1 (patch)
treef1fcaac1376982da46e833e71999be146761861d /configure
parent0cd4faf977f034c603cb2d5c6bb84e728ed3fab3 (diff)
don't use non-standard sed -i option
Originally committed as revision 7321 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 8 insertions, 2 deletions
diff --git a/configure b/configure
index 113c458e44..f18e0dabbf 100755
--- a/configure
+++ b/configure
@@ -393,6 +393,12 @@ require(){
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='
encoders
decoders
@@ -2105,6 +2111,6 @@ if test "$swscaler" != "no"; then
else
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"
- sed -i s/^Libs:.*$/Libs:/ libswscale.pc
- sed -i s/^Libs:.*$/Libs:/ libswscale-uninstalled.pc
+ apply libswscale.pc sed s/^Libs:.*$/Libs:/
+ apply libswscale-uninstalled.pc sed s/^Libs:.*$/Libs:/
fi