diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2002-05-16 15:22:58 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2002-05-16 15:22:58 +0000 |
| commit | 35abacef2af22f7c5955a941494a37b8957a40db (patch) | |
| tree | 26c910193f38e628273503d7190fb60a0a01427c /gnu/usr.bin/cc/cc_tools | |
| parent | 493139bc24c01c27d8db6b6d2c7ba517fbe3bcd0 (diff) | |
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
Notes
svn path=/head/; revision=96736
Diffstat (limited to 'gnu/usr.bin/cc/cc_tools')
| -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 5a0a996f140a..f4200d98b900 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. */ |
