gnucash-on-windows master: Fix missing pipe in jhbuildrc.in transformation.

John Ralls jralls at code.gnucash.org
Sat Sep 30 14:30:07 EDT 2017


Updated	 via  https://github.com/Gnucash/gnucash-on-windows/commit/211beda7 (commit)
	from  https://github.com/Gnucash/gnucash-on-windows/commit/33cb4b1a (commit)



commit 211beda712ed847cb93dde7df52173e05052ddc3
Author: John Ralls <jralls at ceridwen.us>
Date:   Sat Sep 30 11:29:55 2017 -0700

    Fix missing pipe in jhbuildrc.in transformation.
    
    Fixes bug 788372.

diff --git a/gnucash.modules b/gnucash.modules
index aa5e7c3..f41867e 100644
--- a/gnucash.modules
+++ b/gnucash.modules
@@ -341,7 +341,7 @@
   <metamodule id="meta-gnucash">
     <dependencies>
       <dep package="gnucash"/>
-      <dep package="gnucash-docs-git"/>
+      <dep package="gnucash-docs"/>
     </dependencies>
   </metamodule>
 
diff --git a/setup-mingw64.ps1 b/setup-mingw64.ps1
index 8091fcc..eef3451 100644
--- a/setup-mingw64.ps1
+++ b/setup-mingw64.ps1
@@ -265,7 +265,7 @@ bash-command -command "/usr/bin/patch -d/ -p0 -i $target_unix/src/gnucash-on-win
 
 $jhbuildrc = get-content "$target_dir\\src\\gnucash-on-windows.git\\jhbuildrc.in" |
  %{$_ -replace "@-BASE_DIR-@", "$target_unix"} |
- %{$_ -replace "@-DOWNLOAD_DIR-@", "$download_unix"}
+ %{$_ -replace "@-DOWNLOAD_DIR-@", "$download_unix"} |
  %{$_ -replace "@-ARCH-@", "$arch"}
  [IO.File]::WriteAllLines("$target_dir\\src\\gnucash-on-windows.git\\jhbuildrc", $jhbuildrc)
 



Summary of changes:
 gnucash.modules   | 2 +-
 setup-mingw64.ps1 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



More information about the gnucash-changes mailing list