From 107e57c6155cb19f8c463897d9959cfdd52aecd9 Mon Sep 17 00:00:00 2001 From: "Martin A. Brown" Date: Wed, 27 Jan 2016 21:19:10 -0800 Subject: [PATCH] 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 <. --- .../GNU-Build-System-HOWTO/GNU-Build-System-HOWTO.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LDP/howto/docbook/GNU-Build-System-HOWTO/GNU-Build-System-HOWTO.xml b/LDP/howto/docbook/GNU-Build-System-HOWTO/GNU-Build-System-HOWTO.xml index f311b01d..97563f5f 100644 --- a/LDP/howto/docbook/GNU-Build-System-HOWTO/GNU-Build-System-HOWTO.xml +++ b/LDP/howto/docbook/GNU-Build-System-HOWTO/GNU-Build-System-HOWTO.xml @@ -11,7 +11,7 @@ $Id$ --> make"> autoconf"> @@ -490,10 +490,10 @@ $(TARGET): $(OBJS) $(CC) $(OBJS) -o $(TARGET) main.o: main.c hello.h world.h - $(CC) $(CCOPTS) $< + $(CC) $(CCOPTS) $< %.o: %.c %.h - $(CC) $(CCOPTS) $< + $(CC) $(CCOPTS) $< clean: $(RM) $(RMOPTS) $(TARGET) $(OBJS)