diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-10-10 01:49:46 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-10-10 01:49:46 -0400 |
commit | e5b13138b1e045bb43a443882221b39d820553df (patch) | |
tree | 0ca3c0b55e04474dff29d87de4b92f45a6ee1c65 /configs | |
parent | bdde892d668e17fb5a67de0e560a85b9092adf9e (diff) | |
download | gem5-e5b13138b1e045bb43a443882221b39d820553df.tar.xz |
Two minor fixes.
configs/common/SysPaths.py:
Undo accidental change.
src/SConscript:
Fix.
--HG--
extra : convert_revision : 665b186cff7d8ae560601ced7ae407a41a16cfea
Diffstat (limited to 'configs')
-rw-r--r-- | configs/common/SysPaths.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/common/SysPaths.py b/configs/common/SysPaths.py index 5098c54ce..2070d11f8 100644 --- a/configs/common/SysPaths.py +++ b/configs/common/SysPaths.py @@ -58,7 +58,7 @@ def system(): if not binary.dir: binary.dir = joinpath(system.dir, 'binaries') if not disk.dir: - disk.dir = joinpath('/n/zamp/z/ktlim/local/clean/linux', 'disks') + disk.dir = joinpath(system.dir, 'disks') if not script.dir: script.dir = joinpath(system.dir, 'boot') |