diff --git a/libburn/trunk/cdrskin/add_ts_changes_to_libburn_0_3_4 b/libburn/trunk/cdrskin/add_ts_changes_to_libburn_0_3_4 index 5df58935..f55d639e 100755 --- a/libburn/trunk/cdrskin/add_ts_changes_to_libburn_0_3_4 +++ b/libburn/trunk/cdrskin/add_ts_changes_to_libburn_0_3_4 @@ -192,6 +192,18 @@ do fi done +# Repair non-portable shell code output of ./bootstrap +( + cd "$compile_dir" || exit 1 + sed -e 's/^for ac_header in$/test -z 1 \&\& for ac_header in dummy/' \ + < ./configure > ./configure-repaired + if test "$?" = 0 + then + echo "$0: Empty 'for ac_header in' found in configure." >&2 + fi + mv ./configure-repaired ./configure + chmod a+rx,go-w,u+w ./configure +) # Pack it up to the new libburn+cdrskin-tarball tar czf "$cdrskin_tarball" "$target" diff --git a/libburn/trunk/cdrskin/add_ts_changes_to_libburn_0_3_5 b/libburn/trunk/cdrskin/add_ts_changes_to_libburn_0_3_5 index 706a833b..6bdba8cb 100755 --- a/libburn/trunk/cdrskin/add_ts_changes_to_libburn_0_3_5 +++ b/libburn/trunk/cdrskin/add_ts_changes_to_libburn_0_3_5 @@ -192,6 +192,19 @@ do fi done +# Repair non-portable shell code output of ./bootstrap +( + cd "$compile_dir" || exit 1 + sed -e 's/^for ac_header in$/test -z 1 \&\& for ac_header in dummy/' \ + < ./configure > ./configure-repaired + if test "$?" = 0 + then + echo "$0: Empty 'for ac_header in' found in configure." >&2 + fi + mv ./configure-repaired ./configure + chmod a+rx,go-w,u+w ./configure +) + # Pack it up to the new libburn+cdrskin-tarball tar czf "$cdrskin_tarball" "$target"