Comment out __RCSID; this is a host tool and we don't need the Id in the binary.

Fixes cross-build issue on RHEL5-like Linux.

Arguably we shouldn't even #include <config.h> because that's been created
for the NetBSD target and not the (possibly non-NetBSD) host system,
but that hasn't caused problems so far so I'll leave it for now.
This commit is contained in:
lukem 2008-09-03 07:10:55 +00:00
parent 8389b9b512
commit b926b61a73
1 changed files with 3 additions and 1 deletions

View File

@ -33,8 +33,10 @@
#ifdef HAVE_CONFIG_H
#include <config.h>
#if 0
__RCSID("$Heimdal: make-print-version.c 18765 2006-10-21 17:37:32Z lha $"
"$NetBSD: make-print-version.c,v 1.6 2008/03/22 08:37:23 mlelstv Exp $");
"$NetBSD: make-print-version.c,v 1.7 2008/09/03 07:10:55 lukem Exp $");
#endif
#endif
#include <stdio.h>