Note that configure.sh still uses the bashism $(RANDOM).
show_targets() {
while [ -n "$*" ]; do
- if [ "${1%%-*}" == "${2%%-*}" ]; then
- if [ "${2%%-*}" == "${3%%-*}" ]; then
+ if [ "${1%%-*}" = "${2%%-*}" ]; then
+ if [ "${2%%-*}" = "${3%%-*}" ]; then
printf " %-24s %-24s %-24s\n" "$1" "$2" "$3"
shift; shift; shift
else
prefix="${prefix%/}"
libdir="${libdir:-${prefix}/lib}"
libdir="${libdir%/}"
- if [ "${libdir#${prefix}}" == "${libdir}" ]; then
+ if [ "${libdir#${prefix}}" = "${libdir}" ]; then
die "Libdir ${libdir} must be a subdirectory of ${prefix}"
fi
}
-#!/bin/bash
+#!/bin/sh
##
## Copyright (c) 2010 The VP8 project authors. All Rights Reserved.
##
esac
done
-TAB=$'\t'
+TAB="$(printf '\t')"
cat > release.mk << EOF
%\$(BUILD_SFX).tar.bz2: %/.done
${TAB}@echo "\$(subst .tar.bz2,,\$@): tarball"
esac
opts="$opts --enable-postproc"
- [ "x${clean}" == "xyes" ] \
+ [ "x${clean}" = "xyes" ] \
&& rm -rf ${full_cfg}${BUILD_SFX}${TAR_SFX} \
&& rm -rf logs/${full_cfg}${BUILD_SFX}.log.bz2