diff options
author | ru <ru@FreeBSD.org> | 2008-02-22 09:31:23 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2008-02-22 09:31:23 +0000 |
commit | 84e9871c8f71a302862c386b464c7e669c83eee4 (patch) | |
tree | c9fb50d10a1fa5556202bbf2e83b5b71478dbc9a /usr.bin | |
parent | dc8c48731a6c74c832a2e48b77793701be241ae2 (diff) | |
download | FreeBSD-src-84e9871c8f71a302862c386b464c7e669c83eee4.zip FreeBSD-src-84e9871c8f71a302862c386b464c7e669c83eee4.tar.gz |
Hide BSD ar(1) under the MK_TOOLCHAIN option.
Reviewed by: obrien
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 6a1f6d9..e0f7687 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -11,7 +11,7 @@ SUBDIR= alias \ apply \ - ar \ + ${_ar} \ asa \ at \ ${_atm} \ @@ -292,6 +292,7 @@ _vacation= vacation .endif .if ${MK_TOOLCHAIN} != "no" +_ar= ar _c89= c89 _c99= c99 _gprof= gprof |