diff options
author | root <devnull@localhost> | 1996-03-22 16:14:25 +0000 |
---|---|---|
committer | root <devnull@localhost> | 1996-03-22 16:14:25 +0000 |
commit | df2dfc15bebb86130a86afa775eda563e9874b8b (patch) | |
tree | 6b35263b29f8102be9e5a90c7bae3db1808b1580 /lib | |
parent | fcce3a625f56147c32cf23515ea2f1ce3269ffe0 (diff) | |
download | rpm-df2dfc15bebb86130a86afa775eda563e9874b8b.tar.gz rpm-df2dfc15bebb86130a86afa775eda563e9874b8b.tar.bz2 rpm-df2dfc15bebb86130a86afa775eda563e9874b8b.zip |
add support for 786, 886, 986
CVS patchset: 482
CVS date: 1996/03/22 16:14:25
Diffstat (limited to 'lib')
-rw-r--r-- | lib/misc.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/misc.c b/lib/misc.c index 4c41c9a40..ca8980b15 100644 --- a/lib/misc.c +++ b/lib/misc.c @@ -99,7 +99,10 @@ static void init_arch_os(void) } uname(&un); - if ((!strcmp(un.machine, "i686")) || + if ((!strcmp(un.machine, "i986")) || + (!strcmp(un.machine, "i886")) || + (!strcmp(un.machine, "i786")) || + (!strcmp(un.machine, "i686")) || (!strcmp(un.machine, "i586")) || (!strcmp(un.machine, "i486")) || (!strcmp(un.machine, "i386"))) { |