Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 7d7780f

Browse files
committed
Add space between after ">" in ">$@" in SGML Makefile, for clarity.
1 parent 7de3869 commit 7d7780f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

doc/src/sgml/Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# PostgreSQL documentation makefile
44
#
5-
# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.144 2010/06/12 09:55:12 petere Exp $
5+
# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.145 2010/06/12 15:42:44 momjian Exp $
66
#
77
#----------------------------------------------------------------------------
88

@@ -124,7 +124,7 @@ version.sgml: $(top_srcdir)/configure
124124
{ \
125125
echo "<!entity version \"$(VERSION)\">"; \
126126
echo "<!entity majorversion \"$(MAJORVERSION)\">"; \
127-
} >$@
127+
} > $@
128128

129129
features-supported.sgml: $(top_srcdir)/src/backend/catalog/sql_feature_packages.txt $(top_srcdir)/src/backend/catalog/sql_features.txt
130130
$(PERL) $(srcdir)/mk_feature_tables.pl YES $^ > $@
@@ -203,22 +203,22 @@ JADE.text = $(JADE) $(JADEFLAGS) $(SGMLINCLUDE) $(CATALOG) -d stylesheet.dsl -i
203203
LYNX = lynx
204204

205205
INSTALL HISTORY regress_README: % : %.html
206-
$(PERL) -p -e 's/<H(1|2)$$/<H\1 align=center/g' $< | $(LYNX) -force_html -dump -nolist -stdin >$@
206+
$(PERL) -p -e 's/<H(1|2)$$/<H\1 align=center/g' $< | $(LYNX) -force_html -dump -nolist -stdin > $@
207207

208208
INSTALL.html: standalone-install.sgml installation.sgml version.sgml
209-
$(JADE.text) -V nochunks standalone-install.sgml installation.sgml >$@
209+
$(JADE.text) -V nochunks standalone-install.sgml installation.sgml > $@
210210

211211
HISTORY.html: generate_history.pl $(wildcard $(srcdir)/release*.sgml)
212212
$(PERL) $< "$(srcdir)" release.sgml >tempfile_HISTORY.sgml
213-
$(JADE.text) -V nochunks tempfile_HISTORY.sgml >$@
213+
$(JADE.text) -V nochunks tempfile_HISTORY.sgml > $@
214214
rm tempfile_HISTORY.sgml
215215

216216
regress_README.html: regress.sgml
217217
( echo '<!doctype chapter PUBLIC "-//OASIS//DTD DocBook V4.2//EN" ['; \
218218
echo '<!entity % standalone-ignore "IGNORE">'; \
219219
echo '<!entity % standalone-include "INCLUDE"> ]>'; \
220220
cat $< ) >tempfile_regress_README.sgml
221-
$(JADE.text) -V nochunks tempfile_regress_README.sgml >$@
221+
$(JADE.text) -V nochunks tempfile_regress_README.sgml > $@
222222
rm tempfile_regress_README.sgml
223223

224224

@@ -233,7 +233,7 @@ postgres.xml: $(srcdir)/postgres.sgml $(ALMOSTALLSGML)
233233
$(OSX) -D. -x lower $< >postgres.xmltmp
234234
$(PERL) -p -e 's/\[(amp|copy|egrave|gt|lt|mdash|nbsp|ouml|pi|quot|uuml) *\]/\&\1;/g;' \
235235
-e '$$_ .= qq{<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">\n} if $$. == 1;' \
236-
<postgres.xmltmp >$@
236+
<postgres.xmltmp > $@
237237
rm postgres.xmltmp
238238
# ' hello Emacs
239239

@@ -262,7 +262,7 @@ MAKEINFO = makeinfo
262262
$(DB2X_XSLTPROC) -s texi -g output-file=$(basename $@) $< -o $@
263263

264264
%.texi: %.texixml
265-
$(DB2X_TEXIXML) --encoding=iso-8859-1//TRANSLIT $< --to-stdout >$@
265+
$(DB2X_TEXIXML) --encoding=iso-8859-1//TRANSLIT $< --to-stdout > $@
266266

267267
%.info: %.texi
268268
$(MAKEINFO) --enable-encoding --no-split --no-validate $< -o $@

0 commit comments

Comments
 (0)