diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2003-02-21 02:30:51 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2003-02-21 02:30:51 +0000 |
| commit | 0bc811877895ae521482c9854988590f4ab31687 (patch) | |
| tree | 2abea78f7c40be8c99c3cd47450a7f8df7de3626 /usr.bin | |
| parent | 41dc7a98312ba5578698984f21f393788acd67fc (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index a748e4cd0c36..0668c679300c 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -12,6 +12,11 @@ _xlint= xlint .endif +.if ${MACHINE_ARCH} != "powerpc" +_gprof= gprof +_truss= truss +.endif + SUBDIR= alias \ apply \ asa \ @@ -68,7 +73,7 @@ SUBDIR= alias \ gencat \ getconf \ getopt \ - gprof \ + ${_gprof} \ head \ hesinfo \ hexdump \ @@ -171,7 +176,7 @@ SUBDIR= alias \ tr \ true \ truncate \ - truss \ + ${_truss} \ tset \ tsort \ tty \ |
