Index: trunk/scconfig/Rev.tab =================================================================== --- trunk/scconfig/Rev.tab (revision 3184) +++ trunk/scconfig/Rev.tab (revision 3185) @@ -1,4 +1,4 @@ 3183 distclean,configure C89 switchover -3179 configure c89 correctness: do not depend on hardwired long long, detect it +3179 configure C89 correctness: do not depend on hardwired long long, detect it 2985 configure Revcheck installed in Makefiles. 2984 configure Introduction of the config-rev system. Index: trunk/scconfig/revtest.c =================================================================== --- trunk/scconfig/revtest.c (revision 3184) +++ trunk/scconfig/revtest.c (revision 3185) @@ -10,6 +10,13 @@ NULL }; +const char *act_desc[] = { + "run 'make distclean' in trunk/", + "rerun ./configure", + "run 'make clean' in trunk/", + NULL +}; + int act_needed[16]; int main(int argc, char *argv[]) @@ -50,7 +57,7 @@ txt++; } if (!banner) { - fprintf(stderr, "\nYour source tree is stale (last configured at r%d). Recent new features:\n", stamp); + fprintf(stderr, "\nYour source tree is stale (last configured after config-milestone r%d).\nRecent new features:\n", stamp); banner = 1; } fprintf(stderr, "\nr%d: %s\n", rev, txt); @@ -68,7 +75,7 @@ fprintf(stderr, "\nBefore running make, please do the following actions in this order:\n"); for(idx = 0, a = act_names; *a != NULL; idx++, a++) if (act_needed[idx]) - fprintf(stderr, " run %s\n", *a); + fprintf(stderr, " %s\n", act_desc[idx]); fprintf(stderr, "\n"); }