[rtems-source-builder commit] Fix the rtems-tools waf --destdir path on Windows.

Chris Johns chrisj at rtems.org
Mon Feb 22 06:46:20 UTC 2016


Module:    rtems-source-builder
Branch:    4.11
Commit:    34dfc8380d1fa8456b12ae3094fc823875ac72d9
Changeset: http://git.rtems.org/rtems-source-builder/commit/?id=34dfc8380d1fa8456b12ae3094fc823875ac72d9

Author:    Chris Johns <chrisj at rtems.org>
Date:      Mon Feb 22 17:38:32 2016 +1100

Fix the rtems-tools waf --destdir path on Windows.

Waf requires the drive be added to the destdir path so it installs to a path
the RSB knows. The RSB assumes the destdir contains an MSYS drive path as
seen in the POSIX path. This is default for configure scripts.

Also fix the git URL to pull before the branch command as well as after to
update the branch.

Closes #2605.

---

 rtems/config/tools/rtems-tools-1.cfg        |  2 +-
 rtems/config/tools/rtems-tools-common-1.cfg | 17 +++++++++++++++--
 2 files changed, 16 insertions(+), 3 deletions(-)

diff --git a/rtems/config/tools/rtems-tools-1.cfg b/rtems/config/tools/rtems-tools-1.cfg
index bef9d6b..b03b7ad 100644
--- a/rtems/config/tools/rtems-tools-1.cfg
+++ b/rtems/config/tools/rtems-tools-1.cfg
@@ -38,7 +38,7 @@
    %define rtems_tools_git_checkout %{nil}
   %endif
 
-  %source set rtems-tools git://git.rtems.org/rtems-tools.git?reset=hard?branch=%{rtems_tools_version}?pull%{rtems_tools_git_checkout}
+  %source set rtems-tools git://git.rtems.org/rtems-tools.git?reset=hard?fetch?branch=%{rtems_tools_version}?pull%{rtems_tools_git_checkout}
  %endif
 
  #
diff --git a/rtems/config/tools/rtems-tools-common-1.cfg b/rtems/config/tools/rtems-tools-common-1.cfg
index eecd121..3a7f1cf 100644
--- a/rtems/config/tools/rtems-tools-common-1.cfg
+++ b/rtems/config/tools/rtems-tools-common-1.cfg
@@ -10,7 +10,7 @@ Version:   %{rtems_tools_version}
 Release:   %{release}
 URL: 	   http://www.rtems.org/
 BuildRoot: %{_tmppath}/%{name}-root-%(%{__id_u} -n)
-License:   BSD-2-Caluse + GPL-2.0
+License:   BSD-2-Clause + GPL-2.0
 
 #
 # Prepare the source code.
@@ -51,6 +51,19 @@ License:   BSD-2-Caluse + GPL-2.0
 
   %{__rmdir} $SB_BUILD_ROOT
 
+  #
+  # If on Windows we need to add the driver prefix to the built root as waf
+  # strips the driver prefix from the prefix path when joining it to the
+  # destdir path. Waf is correct in doing this and the RSB is design to match
+  # the configure behaviour which treats the whole path including the drive
+  # prefix as part of the path as just a path.
+  #
+  %ifos win32 mingw ming32
+   SB_BUILD_ROOT_WAF=$SB_BUILD_ROOT$(echo %{_prefix} | cut -c 1-2)
+  %else
+   SB_BUILD_ROOT_WAF=$SB_BUILD_ROOT
+  %endif
+
   cd ${source_dir_rtems_tools}
-  ./waf --destdir=$SB_BUILD_ROOT install
+  ./waf --destdir=$SB_BUILD_ROOT_WAF install
   cd ${build_top}



More information about the vc mailing list