summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>1998-07-30 20:54:47 +0000
committerPaul Smith <psmith@gnu.org>1998-07-30 20:54:47 +0000
commite2403327e9913bbcbd515f9c38b8f4e26fb9b0d9 (patch)
tree8ac64ff471e0a976daf75ef913c084adba4972fc /file.c
parent65a7296e2c81b04761b3f024572310a02c9de691 (diff)
downloadgunmake-e2403327e9913bbcbd515f9c38b8f4e26fb9b0d9.tar.gz
GNU make release 3.77.
Diffstat (limited to 'file.c')
-rw-r--r--file.c25
1 files changed, 20 insertions, 5 deletions
diff --git a/file.c b/file.c
index e4ea0bd..a60e70f 100644
--- a/file.c
+++ b/file.c
@@ -49,6 +49,9 @@ lookup_file (name)
register struct file *f;
register char *n;
register unsigned int hashval;
+#ifdef VMS
+ register char *lname, *ln;
+#endif
if (*name == '\0')
abort ();
@@ -57,6 +60,12 @@ lookup_file (name)
for names read from makefiles. It is here for names passed
on the command line. */
#ifdef VMS
+ lname = (char *)malloc(strlen(name) + 1);
+ for (n=name, ln=lname; *n != '\0'; ++n, ++ln)
+ *ln = isupper(*n) ? tolower(*n) : *n;
+ *ln = '\0';
+ name = lname;
+
while (name[0] == '[' && name[1] == ']' && name[2] != '\0')
name += 2;
#endif
@@ -89,9 +98,15 @@ lookup_file (name)
{
if (strieq (f->hname, name))
{
+#ifdef VMS
+ free (lname);
+#endif
return f;
}
}
+#ifdef VMS
+ free (lname);
+#endif
return 0;
}
@@ -374,9 +389,9 @@ remove_intermediates (sig)
if (f->update_status == -1)
/* If nothing would have created this file yet,
don't print an "rm" command for it. */
- continue;
- else if (just_print_flag)
- status = 0;
+ continue;
+ else if (just_print_flag)
+ status = 0;
else
{
status = unlink (f->name);
@@ -660,8 +675,8 @@ print_file_data_base ()
{
printf ("\n# %u files in %u hash buckets.\n", nfiles, FILE_BUCKETS);
#ifndef NO_FLOAT
- printf ("# average %.1f files per bucket, max %u files in one bucket.\n",
- ((double) nfiles) / ((double) FILE_BUCKETS) * 100.0, per_bucket);
+ printf ("# average %.3f files per bucket, max %u files in one bucket.\n",
+ ((double) nfiles) / ((double) FILE_BUCKETS), per_bucket);
#endif
}
}