From f5c8c983e63d7f91588c34afea57436b1216a3a8 Mon Sep 17 00:00:00 2001 From: adilger Date: Sat, 24 Apr 2004 06:56:37 +0000 Subject: [PATCH] Don't use non-existent portals/include/config.h to get build version number. --- lustre/scripts/version_tag.pl.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/scripts/version_tag.pl.in b/lustre/scripts/version_tag.pl.in index 1212441..0e31be6 100644 --- a/lustre/scripts/version_tag.pl.in +++ b/lustre/scripts/version_tag.pl.in @@ -18,7 +18,7 @@ sub get_tag() my $tagfile = new IO::File; if (!$tagfile->open("CVS/Tag")) { my $verfile = new IO::File; - if (!$verfile->open("portals/include/config.h")) { + if (!$verfile->open("include/config.h")) { return "UNKNOWN"; } while(defined($line = <$verfile>)) { -- 1.8.3.1