[haiku-commits] haiku: hrev50367 - src/build/libbe/network

  • From: waddlesplash@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 20 Jun 2016 03:53:35 +0200 (CEST)

hrev50367 adds 1 changeset to branch 'master'
old head: 311c91325185002b03ca8fc8b2b804b2c3011084
new head: 82f44f2db1c993e254358ebc96b0795fff34a9cf
overview: 
http://cgit.haiku-os.org/haiku/log/?qt=range&q=82f44f2db1c9+%5E311c91325185

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

82f44f2db1c9: libbe_build: Fix the new "network" Jamfile.
  
  Was introduced in fa2dd9c45fbbc25cfa47265737124526ef1ae007, but was
  causing weird problems (leaving stray '.o's around the tree.) The problem
  was that it didn't have a space before the semicolon on the "SubDir" line,
  which also ate the following UseHeaders directive, which also meant
  that running "jam" inside a subdirectory was broken between that commit
  and this one.

                              [ Augustin Cavalier <waddlesplash@xxxxxxxxx> ]

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

Revision:    hrev50367
Commit:      82f44f2db1c993e254358ebc96b0795fff34a9cf
URL:         http://cgit.haiku-os.org/haiku/commit/?id=82f44f2db1c9
Author:      Augustin Cavalier <waddlesplash@xxxxxxxxx>
Date:        Sun Jun 19 23:11:50 2016 UTC

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

1 file changed, 1 insertion(+), 2 deletions(-)
src/build/libbe/network/Jamfile | 3 +--

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

diff --git a/src/build/libbe/network/Jamfile b/src/build/libbe/network/Jamfile
index c824cec..c621b59 100644
--- a/src/build/libbe/network/Jamfile
+++ b/src/build/libbe/network/Jamfile
@@ -1,6 +1,5 @@
-SubDir HAIKU_TOP src build libbe network;
+SubDir HAIKU_TOP src build libbe network ;
 
-UseHeaders [ FDirName $(HAIKU_TOP) headers build ] : true ;
 UseHeaders [ FDirName $(HAIKU_TOP) headers os net ] : true ;
 UseHeaders [ FDirName $(HAIKU_TOP) headers private shared ] : true ;
 


Other related posts:

  • » [haiku-commits] haiku: hrev50367 - src/build/libbe/network - waddlesplash