Merge branch 'master' of ssh://git.haiku-os.org/haiku

This commit is contained in:
Scott McCreary
2011-12-02 01:08:23 +00:00
3 changed files with 9 additions and 7 deletions
+1 -1
View File
@@ -360,7 +360,7 @@ AddDirectoryToHaikuImage home mail draft ;
AddDirectoryToHaikuImage home mail in ; AddDirectoryToHaikuImage home mail in ;
AddDirectoryToHaikuImage home mail out ; AddDirectoryToHaikuImage home mail out ;
AddSymlinkToHaikuImage home config settings : deskbar : be ; AddSymlinkToHaikuImage home config : settings/deskbar : be ;
# Deskbar Application links # Deskbar Application links
AddDirectoryToHaikuImage home config settings deskbar Applications ; AddDirectoryToHaikuImage home config settings deskbar Applications ;
DESKBAR_APPLICATIONS = ActivityMonitor CharacterMap CodyCam CDPlayer DeskCalc DESKBAR_APPLICATIONS = ActivityMonitor CharacterMap CodyCam CDPlayer DeskCalc
+7 -4
View File
@@ -399,10 +399,13 @@ function GetBuildFile()
if ! [ -f ${baseDir}/${buildfile} ] ; then if ! [ -f ${baseDir}/${buildfile} ] ; then
echo "Fetching ${buildfile} ..." echo "Fetching ${buildfile} ..."
cd ${baseDir} cd ${baseDir}
local baseURL=http://dev.haiku-os.org/export/ local baseURL=http://cgit.haiku-os.org/haiku/plain
local revision=`uname -v | awk '{print $1}' | sed -e 's/r//'` local revisionTag=`uname -v | awk '{print $1}' | sed -e 's/-.*//'`
local url="${baseURL}${revision}/haiku/trunk/build/jam/${buildfile}" # the sed invocation above drops potential dirty markers off the
wget -q ${url} || ErrorExit "...failed to download $buildfile" # revision tag
local url="${baseURL}/build/jam/${buildfile}?id=${revisionTag}"
wget -q ${url} -O ${buildfile} \
|| ErrorExit "...failed to download $buildfile"
fi fi
} }
@@ -8,10 +8,9 @@
#include <SupportDefs.h> #include <SupportDefs.h>
#include <Array.h>
#include <ObjectList.h> #include <ObjectList.h>
#include "Array.h"
class ListSelectionModel { class ListSelectionModel {
public: public: