Unbreak web build: replace space characters with tabs where necessary.
This commit is contained in:
parent
a7d319a015
commit
8fec33c778
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=15040
1 changed files with 6 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# $FreeBSD: www/es/doc/Makefile,v 1.1 2002/11/25 12:26:21 jesusr Exp $
|
# $FreeBSD: www/es/doc/Makefile,v 1.2 2002/11/25 16:52:43 jesusr Exp $
|
||||||
#
|
#
|
||||||
# Build the FreeBSD documentation *outside* of the www tree, and install it
|
# Build the FreeBSD documentation *outside* of the www tree, and install it
|
||||||
# in to the right place as necessary.
|
# in to the right place as necessary.
|
||||||
|
@ -12,20 +12,23 @@
|
||||||
all: all-all all-install
|
all: all-all all-install
|
||||||
|
|
||||||
all-all:
|
all-all:
|
||||||
@unset DESTDIR || true; \
|
@unset DESTDIR || true; \
|
||||||
cd ${.CURDIR}/../../../doc/es_ES.ISO8859-1; \
|
cd ${.CURDIR}/../../../doc/es_ES.ISO8859-1; \
|
||||||
${MAKE} FORMATS="html-split html" \
|
${MAKE} FORMATS="html-split html" \
|
||||||
INSTALL_COMPRESSED= all
|
INSTALL_COMPRESSED= all
|
||||||
|
|
||||||
all-install:
|
all-install:
|
||||||
@unset DESTDIR || true; \
|
@unset DESTDIR || true; \
|
||||||
cd ${.CURDIR}/../../../doc/es_ES.ISO8859-1; \
|
cd ${.CURDIR}/../../../doc/es_ES.ISO8859-1; \
|
||||||
${MAKE} FORMATS="html-split html" DOCDIR=${.OBJDIR} \
|
${MAKE} FORMATS="html-split html" DOCDIR=${.OBJDIR} \
|
||||||
INSTALL_COMPRESSED= install
|
INSTALL_COMPRESSED= install
|
||||||
|
|
||||||
install clean:
|
install clean:
|
||||||
@unset DESTDIR || true; \
|
@unset DESTDIR || true; \
|
||||||
cd ${.CURDIR}/../../../doc/es_ES.ISO8859-1; \
|
cd ${.CURDIR}/../../../doc/es_ES.ISO8859-1; \
|
||||||
${MAKE} FORMATS="html-split html" DOCDIR=${DESTDIR}/data/doc \
|
${MAKE} FORMATS="html-split html" DOCDIR=${DESTDIR}/data/doc \
|
||||||
INSTALL_COMPRESSED= ${.TARGET}
|
INSTALL_COMPRESSED= ${.TARGET}
|
||||||
|
|
||||||
.if make(clean)
|
.if make(clean)
|
||||||
${RM} -rf es*
|
${RM} -rf es*
|
||||||
.endif
|
.endif
|
||||||
|
|
Loading…
Reference in a new issue