summaryrefslogtreecommitdiffstats
path: root/loader2/lang.c
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-01-13 07:14:58 +0000
committerJeremy Katz <katzj@redhat.com>2003-01-13 07:14:58 +0000
commitfbf80e90c2b9595edf7857e5f19f2b64b4931508 (patch)
tree2de90377331e926aeeaccd5837e8cf872d08fda4 /loader2/lang.c
parent234a0ed83bf5b06ccffb911463d3e39ae469d9f6 (diff)
downloadanaconda-fbf80e90c2b9595edf7857e5f19f2b64b4931508.tar.gz
anaconda-fbf80e90c2b9595edf7857e5f19f2b64b4931508.tar.xz
anaconda-fbf80e90c2b9595edf7857e5f19f2b64b4931508.zip
don't substitute PRODUCTNAME at build time and instead read it from
/.buildstamp at runtime
Diffstat (limited to 'loader2/lang.c')
-rw-r--r--loader2/lang.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader2/lang.c b/loader2/lang.c
index 18ce36c46..62425fc26 100644
--- a/loader2/lang.c
+++ b/loader2/lang.c
@@ -246,7 +246,7 @@ static int setupLanguage(int choice, int flags) {
buf[i] = ' ';
newtDrawRootText(0, 0, buf);
- buf = sdupprintf(_(topLineWelcome), PRODUCTNAME);
+ buf = sdupprintf(_(topLineWelcome), getProductName());
newtDrawRootText(0, 0, buf);
free(buf);
newtPopHelpLine();