summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-04-12 21:32:33 +0100
committerMans Rullgard <mans@mansr.com>2012-04-13 13:22:37 +0100
commit6555acad10a6593d91fb09c7c20bbb4ab335bc02 (patch)
tree6e475f3a8388abf46468fc33647b0441a7273d35 /configure
parentde7f22ab0c5f79239ee627344d0d73e1c7060192 (diff)
configure: escape colons in values written to config.fate
The fields in config.fate are colon-separated so any colons within the fields should be escaped to prevent confusion. Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure b/configure
index cc63146128..2eb885b5af 100755
--- a/configure
+++ b/configure
@@ -2594,7 +2594,11 @@ case $target_os in
;;
esac
-echo "config:$arch:$subarch:$cpu:$target_os:$cc_ident:$LIBAV_CONFIGURATION" >config.fate
+esc(){
+ echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
+}
+
+echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $LIBAV_CONFIGURATION)" >config.fate
check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable pic