diff options
author | Chris Lattner <sabre@nondot.org> | 2002-09-22 23:35:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-09-22 23:35:11 +0000 |
commit | 35fcad01931e583900c7d8a970b83cc163368500 (patch) | |
tree | ab6672e8c106eebc91e99744b14d173e458c2640 | |
parent | ab0577be5a7eb957e129254fb1bb25592f6d2e55 (diff) |
'whoami' doesn't exist on solaris
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3882 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile.config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.config b/Makefile.config index 8634a46920..c16e16774f 100644 --- a/Makefile.config +++ b/Makefile.config @@ -23,7 +23,7 @@ CC := PATH=/usr/bin /usr/dcs/software/evaluation/bin/gcc # object files. # #LLVM_OBJ_DIR = . -LLVM_OBJ_DIR = /localhome/$(shell whoami) +LLVM_OBJ_DIR := /localhome/$(USER) # Path to location for LLVM front-end this should only be specified here if you # want to override the value set in Makefile.$(uname) |