diff options
author | cognet <cognet@FreeBSD.org> | 2004-05-14 23:08:52 +0000 |
---|---|---|
committer | cognet <cognet@FreeBSD.org> | 2004-05-14 23:08:52 +0000 |
commit | dd9f981b6806469475907ff28f4d52a647b7c694 (patch) | |
tree | a0c24427400680faa89b9b04a084d28f32cf19a6 /usr.bin/Makefile | |
parent | 7e5c41897c31347b9f55811a43c15bf706e04eb5 (diff) | |
download | FreeBSD-src-dd9f981b6806469475907ff28f4d52a647b7c694.zip FreeBSD-src-dd9f981b6806469475907ff28f4d52a647b7c694.tar.gz |
Insert "arm" between "amd64" and "powerpc"
Requested by: bde
Diffstat (limited to 'usr.bin/Makefile')
-rw-r--r-- | usr.bin/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 58c0995..8b9540d 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -224,8 +224,8 @@ SUBDIR= alias \ ypmatch \ ypwhich -.if ${MACHINE_ARCH} != "amd64" && ${MACHINE_ARCH} != "powerpc" && \ - ${MACHINE_ARCH} != "arm" +.if ${MACHINE_ARCH} != "amd64" && ${MACHINE_ARCH} != "arm" && \ + ${MACHINE_ARCH} != "powerpc" _truss= truss .endif |