diff options
author | Jeremy Katz <katzj@redhat.com> | 2005-06-07 19:45:08 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2005-06-07 19:45:08 +0000 |
commit | 8a14a031123f0cbf427cae2cb8fb45d86d778f5c (patch) | |
tree | f95908bb1848d88c7a7f11ea4ecc940d1943177e | |
parent | a1b89c764bcb3c2b52ef03b46415403b331439bc (diff) | |
download | anaconda-8a14a031123f0cbf427cae2cb8fb45d86d778f5c.tar.gz anaconda-8a14a031123f0cbf427cae2cb8fb45d86d778f5c.tar.xz anaconda-8a14a031123f0cbf427cae2cb8fb45d86d778f5c.zip |
2005-06-07 Jeremy Katz <katzj@redhat.com>
* isys/lang.c (bterm_main): Use the full font first (#159505)
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | isys/lang.c | 6 |
2 files changed, 10 insertions, 3 deletions
@@ -1,5 +1,12 @@ 2005-06-07 Jeremy Katz <katzj@redhat.com> + * isys/lang.c (bterm_main): Use the full font first (#159505) + + * partitions.py (Partitions.writeKS): And use the quoted format so + we get it everywhere (#159193) + + * fsset.py (FileSystemType.getName): Pass back quoted fsname if needed. + * packages.py (rpmErrorClass.install_callback): Don't segfault before removes, should fix upgrades. diff --git a/isys/lang.c b/isys/lang.c index 79534f639..ee975f032 100644 --- a/isys/lang.c +++ b/isys/lang.c @@ -199,10 +199,10 @@ int isysStartBterm(void) { if (major(sb.st_rdev) == 3 || major(sb.st_rdev) == 136) return 0; - if (!access("/etc/font.bgf.gz", R_OK)) - btermargs[3] = "/etc/font.bgf.gz"; - else if (!access("/usr/lib/bogl/font.bgf.gz", R_OK)) + if (!access("/usr/lib/bogl/font.bgf.gz", R_OK)) btermargs[3] = "/usr/lib/bogl/font.bgf.gz"; + else if (!access("/etc/font.bgf.gz", R_OK)) + btermargs[3] = "/etc/font.bgf.gz"; else if (!access("font.bgf.gz", R_OK)) btermargs[3] = "font.bgf.gz"; else |