summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2007-09-07 12:24:53 +0000
committerBjörn Stenberg <bjorn@haxx.se>2007-09-07 12:24:53 +0000
commit6b5da8cdf24fb0cfcbeb4371b9066fa94cfecd3e (patch)
tree4167175a1d73e714a2c45e6571a7de808237789d /tools
parent7094512bde3a6fc355ff537c147fb4f1dc923917 (diff)
downloadrockbox-6b5da8cdf24fb0cfcbeb4371b9066fa94cfecd3e.tar.gz
rockbox-6b5da8cdf24fb0cfcbeb4371b9066fa94cfecd3e.zip
Use /tmp for temporary directories instead of /home/bjst
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14631 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-xtools/rockboxdev.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/rockboxdev.sh b/tools/rockboxdev.sh
index e33b21c289..e02b0e5810 100755
--- a/tools/rockboxdev.sh
+++ b/tools/rockboxdev.sh
@@ -2,7 +2,7 @@
2 2
3# this is where this script will store downloaded files and check for already 3# this is where this script will store downloaded files and check for already
4# downloaded files 4# downloaded files
5dlwhere="$HOME/tmp" 5dlwhere="/tmp/rbdev-dl"
6 6
7# will append the target string to the prefix dir mentioned here 7# will append the target string to the prefix dir mentioned here
8# Note that the user running this script must be able to do make install in 8# Note that the user running this script must be able to do make install in
@@ -12,7 +12,7 @@ prefix="/usr/local"
12 12
13# This directory is used to extract all files and to build everything in. It 13# This directory is used to extract all files and to build everything in. It
14# must not exist before this script is invoked (as a security measure). 14# must not exist before this script is invoked (as a security measure).
15builddir="$HOME/build-rbdev" 15builddir="/tmp/rbdev-build"
16 16
17# This script needs to use GNU Make. On Linux systems, GNU Make is invoked 17# This script needs to use GNU Make. On Linux systems, GNU Make is invoked
18# by running the "make" command, on most BSD systems, GNU Make is invoked 18# by running the "make" command, on most BSD systems, GNU Make is invoked