Author: mcbrown
Date: 2006-10-11 11:49:11 +0200 (Wed, 11 Oct 2006)
New Revision: 3601
Log:
Fixing idvalidate so that it correctly reports an error on exit when there is a missing ID.
Minor fix to the Workbench directory to enable a forced build of introduction.idmap
Modified:
trunk/tools/idvalidate.pl
trunk/workbench/Makefile
Modified: trunk/tools/idvalidate.pl
===================================================================
--- trunk/tools/idvalidate.pl 2006-10-11 06:30:16 UTC (rev 3600)
+++ trunk/tools/idvalidate.pl 2006-10-11 09:49:11 UTC (rev 3601)
Changed blocks: 1, Lines Added: 2, Lines Deleted: 1; 494 bytes
@@ -59,10 +59,11 @@
else
{
print STDERR "Error: xref ID \"$idref\" not found internally or externally\n";
+ $retval = 1;
}
}
-if (scalar @errlines)
+if (scalar @errlines || $retval)
{
print STDERR @errlines;
print STDERR $notvalid;
Modified: trunk/workbench/Makefile
===================================================================
--- trunk/workbench/Makefile 2006-10-11 06:30:16 UTC (rev 3600)
+++ trunk/workbench/Makefile 2006-10-11 09:49:11 UTC (rev 3601)
Changed blocks: 1, Lines Added: 1, Lines Deleted: 1; 513 bytes
@@ -17,7 +17,7 @@
IDMAP_URLBASE = $(IDMAP_MAIN)/$(IDMAP_LANG)
IDMAP_REFS = . ../gui-common ../refman-5.1 ../refman-common
-IDMAP_SRCS = $(WORKBENCH_SRCS)
+IDMAP_SRCS = $(WORKBENCH_SRCS) introduction.xml
IDMAP_OBJS = $(call xmllist_to_idmaplist,$(IDMAP_SRCS))
# Import standard variables
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r3601 - in trunk: tools workbench | mcbrown | 11 Oct |