diff options
author | ru <ru@FreeBSD.org> | 2002-05-16 15:22:58 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-05-16 15:22:58 +0000 |
commit | af2650e805e3ff18099ecfced4eb103713610a19 (patch) | |
tree | 26c910193f38e628273503d7190fb60a0a01427c /gnu | |
parent | 4c312821280622c855258b87d1d63ac412edec55 (diff) | |
download | FreeBSD-src-af2650e805e3ff18099ecfced4eb103713610a19.zip FreeBSD-src-af2650e805e3ff18099ecfced4eb103713610a19.tar.gz |
MD_EXEC_PREFIX doesn't work for the cross-arch compiler.
The change also makes the `cc -print-search-dirs' output
sane (the pre-3.1 way) in the non-cross case.
Draft reviewed by: obrien
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/cc/cc_tools/freebsd-native.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/usr.bin/cc/cc_tools/freebsd-native.h b/gnu/usr.bin/cc/cc_tools/freebsd-native.h index 5a0a996..f4200d9 100644 --- a/gnu/usr.bin/cc/cc_tools/freebsd-native.h +++ b/gnu/usr.bin/cc/cc_tools/freebsd-native.h @@ -31,8 +31,9 @@ libraries: MD_EXEC_PREFIX:MD_STARTFILE_PREFIX:STANDARD_STARTFILE_PREFIX */ #undef TOOLDIR_BASE_PREFIX /* Old?? This is not documented. */ +#undef STANDARD_BINDIR_PREFIX /* We don't need one for now. */ #define STANDARD_EXEC_PREFIX PREFIX"/libexec/" -#define MD_EXEC_PREFIX PREFIX"/libexec/" +#undef MD_EXEC_PREFIX /* We don't want one. */ /* Under FreeBSD, the normal location of the various *crt*.o files is the /usr/lib directory. */ |