mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 09:53:54 +00:00
Don't print double newline for --src-root and --obj-root as it tends to
confuse shells that might use this output. llvm-svn: 29629
This commit is contained in:
parent
173c5fb3f3
commit
9cd0b87af3
@ -124,9 +124,9 @@ foreach my $arg (@ARGV) {
|
||||
} elsif ($arg eq "--build-mode") {
|
||||
$has_opt = 1; print "$LLVM_BUILDMODE\n";
|
||||
} elsif ($arg eq "--obj-root") {
|
||||
$has_opt = 1; print `cd $LLVM_OBJ_ROOT/; pwd` . "\n";
|
||||
$has_opt = 1; print `cd $LLVM_OBJ_ROOT/; pwd`;
|
||||
} elsif ($arg eq "--src-root") {
|
||||
$has_opt = 1; print `cd $LLVM_SRC_ROOT/; pwd` . "\n";
|
||||
$has_opt = 1; print `cd $LLVM_SRC_ROOT/; pwd`;
|
||||
} else {
|
||||
usage();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user