From ead414d725f306c3ec91faa9e2ffea52d50c0277 Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 23 Oct 1989 10:51:46 +0000 Subject: [PATCH] only give warning about relocation info if -u flag is not given --- mach/sun2/cv/cv.c | 2 +- mach/sun3/cv/cv.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mach/sun2/cv/cv.c b/mach/sun2/cv/cv.c index 359958a14..a62b3fd23 100644 --- a/mach/sun2/cv/cv.c +++ b/mach/sun2/cv/cv.c @@ -143,7 +143,7 @@ main(argc, argv) } unresolved++; } - else if (outhead.oh_nrelo > 0) + else if (outhead.oh_nrelo > 0 && !unresolved) fprintf(stderr, "Warning: relocation information present.\n"); if ( outhead.oh_nsect!=LSECT && outhead.oh_nsect!=NSECT ) fatal("Input file must have %d sections, not %ld\n", diff --git a/mach/sun3/cv/cv.c b/mach/sun3/cv/cv.c index 359958a14..a62b3fd23 100644 --- a/mach/sun3/cv/cv.c +++ b/mach/sun3/cv/cv.c @@ -143,7 +143,7 @@ main(argc, argv) } unresolved++; } - else if (outhead.oh_nrelo > 0) + else if (outhead.oh_nrelo > 0 && !unresolved) fprintf(stderr, "Warning: relocation information present.\n"); if ( outhead.oh_nsect!=LSECT && outhead.oh_nsect!=NSECT ) fatal("Input file must have %d sections, not %ld\n", -- 2.34.1