diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-06-25 15:26:34 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-06-25 15:26:34 +0000 |
commit | b5284be880007f164a2487415ab161a259150927 (patch) | |
tree | 1fb8116e2adfdeda42c124cf589463a1e1b74d9c /gnu/usr.bin/cvs | |
parent | dbdf2ff0f45502a7f6d4c689a7a88028e98ae698 (diff) |
handle sparc64 seperately; ok miod
Diffstat (limited to 'gnu/usr.bin/cvs')
-rw-r--r-- | gnu/usr.bin/cvs/src/import.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/usr.bin/cvs/src/import.c b/gnu/usr.bin/cvs/src/import.c index 833c74e2434..84a80cac36f 100644 --- a/gnu/usr.bin/cvs/src/import.c +++ b/gnu/usr.bin/cvs/src/import.c @@ -899,6 +899,9 @@ static const struct compair comtable[] = #ifdef __sparc__ {"s", "! "}, /* assembler */ #endif +#ifdef __sparc64__ + {"s", "! "}, /* assembler */ +#endif #ifdef __mc68000__ {"s", "| "}, /* assembler */ #endif |