diff options
author | briggs <briggs@cvs.openbsd.org> | 1996-10-24 13:20:41 +0000 |
---|---|---|
committer | briggs <briggs@cvs.openbsd.org> | 1996-10-24 13:20:41 +0000 |
commit | 3071e7e039878d825b0cf79d90624998b4f51b33 (patch) | |
tree | cf5b0fbfae6b56b1d8be4661f7328f161177c50a /distrib | |
parent | 5935acee256754db230284746c2321c994e9cefa (diff) |
Use machine instead of uname -m to get .
This allows the scripts to work more easily in some cross-development
situations and does not break any normal uses.
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/sets/makeflist | 2 | ||||
-rw-r--r-- | distrib/sets/maketars | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/distrib/sets/makeflist b/distrib/sets/makeflist index 04b3e39ac57..a9c169a137a 100644 --- a/distrib/sets/makeflist +++ b/distrib/sets/makeflist @@ -1,6 +1,6 @@ #!/bin/csh -f -set arch=`uname -m` +set arch=`machine` set listsdir=`pwd`/lists set TMPFILE=/tmp/_LIST.$$ diff --git a/distrib/sets/maketars b/distrib/sets/maketars index 5ee14df78d4..4b57827f5c2 100644 --- a/distrib/sets/maketars +++ b/distrib/sets/maketars @@ -12,7 +12,7 @@ if (! $?DESTDIR) then exit 1 endif -set arch=`uname -m` +set arch=`machine` set listsdir=`pwd`/lists set tardir=$RELEASEDIR set fsdir=$DESTDIR |