Dr. Werner Fink 2021-05-28 09:46:17 +00:00 committed by Git OBS Bridge
parent 8022d8a18b
commit 247f2149eb

View File

@ -2,7 +2,7 @@
config/linux | 10 ++++++++++
config_f.h | 9 +++++++--
glob.h | 3 ++-
host.defs | 4 +---
host.defs | 9 +++------
pathnames.h | 2 +-
sh.c | 3 +++
tc.alloc.c | 10 ++++++----
@ -11,7 +11,7 @@
tc.who.c | 3 +++
tcsh.man | 2 +-
tw.h | 4 ++++
12 files changed, 45 insertions(+), 15 deletions(-)
12 files changed, 47 insertions(+), 18 deletions(-)
--- config/linux
+++ config/linux 2021-04-27 07:41:53.192829973 +0000
@ -82,8 +82,20 @@
int glob (const char *, int, int (*)(const char *, int), glob_t *);
void globfree (glob_t *);
--- host.defs
+++ host.defs 2021-05-28 08:58:14.675950938 +0000
@@ -1267,9 +1267,7 @@ newcode :
+++ host.defs 2021-05-28 09:44:03.337584826 +0000
@@ -189,9 +189,8 @@ static void populate(void)
#endif
}
xsnprintf(ostype, sizeof(ostype), "%s", p);
- xsnprintf(mach, sizeof(mach), "%s", e != -1 ? uts.machine : "unknown");
- xsnprintf(host, sizeof(host), "%s-%s",
- e != -1 ? uts.machine : "unknown", ostype);
+ xsnprintf(mach, sizeof(mach), "%s-suse-linux", e != -1 ? uts.machine : "unknown");
+ xsnprintf(host, sizeof(host), "%s", e != -1 ? uts.machine : "unknown");
}
static char *
@@ -1267,9 +1266,7 @@ newcode :
#ifndef _ostype_
ostype = "unknown";
#endif