summaryrefslogtreecommitdiff
path: root/build/make/configure.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build/make/configure.sh')
-rwxr-xr-xbuild/make/configure.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/make/configure.sh b/build/make/configure.sh
index 1f4f24db9..a70a84eec 100755
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -120,8 +120,8 @@ EOF
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
@@ -475,7 +475,7 @@ post_process_common_cmdline() {
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
}