* ok, we want the LANG feature. but now we make it dependant on WEBCIT_LANG instead...
[citadel.git] / webcit / setup.c
index 10ab46113e0ea870e9a1276e4711df5de4a3e4e6..f781ab9bc02f25d60a9bf4256048bb3ba07e4407 100644 (file)
@@ -550,11 +550,11 @@ void install_init_scripts(void)
 #ifdef HAVE_USELOCALE 
                fprintf(fp, "unset LANG\n");
 #else
-               fprintf(fp, "export LANG=c\n");
+               fprintf(fp, "export WEBCIT_LANG=c\n");
 #endif
        }
        else {
-               fprintf(fp, "export LANG=%s\n", AvailLang[localechoice - localeoffset]);
+               fprintf(fp, "export WEBCIT_LANG=%s\n", AvailLang[localechoice - localeoffset]);
 
        }
 #else