[haiku-commits] haiku: hrev52128 - build/jam

  • From: Jérôme Duval <jerome.duval@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 22 Jul 2018 14:03:51 -0400 (EDT)

hrev52128 adds 1 changeset to branch 'master'
old head: 7848bf798e8c29952d516eaab7ac294796865f97
new head: 6de4d8fcf68f46a0702e2cbccea524bd08919051
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=6de4d8fcf68f+%5E7848bf798e8c

----------------------------------------------------------------------------

6de4d8fcf68f: RepositoryRules: correctly handle multiple secondary archs.

                                   [ Jérôme Duval <jerome.duval@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev52128
Commit:      6de4d8fcf68f46a0702e2cbccea524bd08919051
URL:         https://git.haiku-os.org/haiku/commit/?id=6de4d8fcf68f
Author:      Jérôme Duval <jerome.duval@xxxxxxxxx>
Date:        Sun Jul 22 18:02:12 2018 UTC

----------------------------------------------------------------------------

1 file changed, 2 insertions(+), 2 deletions(-)
build/jam/RepositoryRules | 4 ++--

----------------------------------------------------------------------------

diff --git a/build/jam/RepositoryRules b/build/jam/RepositoryRules
index 1d2f4883c4..21be97aa2f 100644
--- a/build/jam/RepositoryRules
+++ b/build/jam/RepositoryRules
@@ -345,7 +345,7 @@ actions BootstrapRepositoryFetchPackage1
                                
secondaryCrossDevelPackage="`pwd`/$secondaryCrossDevelPackage"
                        fi
                        if [ -n "$secondaryCrossDevelPackages" ]; then
-                               
secondaryCrossDevelPackages="secondaryCrossDevelPackages,$secondaryCrossDevelPackage"
+                               
secondaryCrossDevelPackages="$secondaryCrossDevelPackages,$secondaryCrossDevelPackage"
                        else
                                
secondaryCrossDevelPackages="--secondary-cross-devel-package=$secondaryCrossDevelPackage"
                        fi
@@ -643,7 +643,7 @@ actions BuildHaikuPortsSourcePackageDirectory1
                                
secondaryCrossDevelPackage="`pwd`/$secondaryCrossDevelPackage"
                        fi
                        if [ -n "$secondaryCrossDevelPackages" ]; then
-                               
secondaryCrossDevelPackages="secondaryCrossDevelPackages,$secondaryCrossDevelPackage"
+                               
secondaryCrossDevelPackages="$secondaryCrossDevelPackages,$secondaryCrossDevelPackage"
                        else
                                
secondaryCrossDevelPackages="--secondary-cross-devel-package=$secondaryCrossDevelPackage"
                        fi


Other related posts:

  • » [haiku-commits] haiku: hrev52128 - build/jam - Jérôme Duval