summaryrefslogtreecommitdiffstats
path: root/source-builder
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2013-07-21 08:55:11 +1000
committerChris Johns <chrisj@rtems.org>2013-07-21 08:55:11 +1000
commit6d32fe7eb0388698ab07726229e769cd9bb30134 (patch)
tree204e1fb20034be64ef17f6006cf9655857e3e22e /source-builder
parentUpdate using the RTEMS path. (diff)
downloadrtems-source-builder-6d32fe7eb0388698ab07726229e769cd9bb30134.tar.bz2
CONFIG: PR 2127 - Build fails on Linux.
Fix shell tests where '==' was used rather than '='.
Diffstat (limited to 'source-builder')
-rw-r--r--source-builder/config/autoconf-2-1.cfg4
-rw-r--r--source-builder/config/automake-1-1.cfg4
2 files changed, 4 insertions, 4 deletions
diff --git a/source-builder/config/autoconf-2-1.cfg b/source-builder/config/autoconf-2-1.cfg
index 48fd542..b187c4c 100644
--- a/source-builder/config/autoconf-2-1.cfg
+++ b/source-builder/config/autoconf-2-1.cfg
@@ -37,7 +37,7 @@ VersionControl0: git clone git://git.sv.gnu.org/autoconf
cd autoconf-%{autoconf_version}
- if test "%{_internal_autotools}" == "yes"; then
+ if test "%{_internal_autotools}" = "yes"; then
ac_prefix=%{_internal_autotools_path}
else
ac_prefix=%{_prefix}
@@ -67,7 +67,7 @@ VersionControl0: git clone git://git.sv.gnu.org/autoconf
cd autoconf-%{autoconf_version}
- if test "%{_internal_autotools}" == "yes"; then
+ if test "%{_internal_autotools}" = "yes"; then
%{__make} install
else
%{__make} DESTDIR=$SB_BUILD_ROOT install
diff --git a/source-builder/config/automake-1-1.cfg b/source-builder/config/automake-1-1.cfg
index 6ad4bd5..55b8801 100644
--- a/source-builder/config/automake-1-1.cfg
+++ b/source-builder/config/automake-1-1.cfg
@@ -37,7 +37,7 @@ VersionControl0: git clone git://git.savannah.gnu.org/automake.git
cd automake-%{automake_version}
- if test "%{_internal_autotools}" == "yes"; then
+ if test "%{_internal_autotools}" = "yes"; then
am_prefix=%{_internal_autotools_path}
else
am_prefix=%{_prefix}
@@ -66,7 +66,7 @@ VersionControl0: git clone git://git.savannah.gnu.org/automake.git
cd automake-%{automake_version}
- if test "%{_internal_autotools}" == "yes"; then
+ if test "%{_internal_autotools}" = "yes"; then
%{__make} install
else
%{__make} DESTDIR=$SB_BUILD_ROOT install