Correcting the system identifier in the DOCTYPE

Using the HTTP variant of the system identifier; let the local DocBook
installation map that system identifier to the local filesystem for us.

Replacing two literal < with &lt;.
This commit is contained in:
Martin A. Brown 2016-01-27 21:19:10 -08:00
parent 3b55146b71
commit 107e57c615
1 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ $Id$
-->
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"/usr/share/sgml/docbook/dtd/4.1/docbook.dtd" [
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
<!ENTITY make "<command>make</command>">
<!ENTITY autoconf "<command>autoconf</command>">
@ -490,10 +490,10 @@ $(TARGET): $(OBJS)
$(CC) $(OBJS) -o $(TARGET)
main.o: main.c hello.h world.h
$(CC) $(CCOPTS) $<
$(CC) $(CCOPTS) $&lt;
%.o: %.c %.h
$(CC) $(CCOPTS) $<
$(CC) $(CCOPTS) $&lt;
clean:
$(RM) $(RMOPTS) $(TARGET) $(OBJS)