svn commit: r50956 - in head: de_DE.ISO8859-1/htdocs/ports en_US.ISO8859-1/htdocs/ports ja_JP.eucJP/htdocs/ports ru_RU.KOI8-R/htdocs/ports
Wolfram Schneider
wosch at FreeBSD.org
Fri Sep 29 08:51:44 UTC 2017
Author: wosch
Date: Fri Sep 29 08:51:42 2017
New Revision: 50956
URL: https://svnweb.freebsd.org/changeset/doc/50956
Log:
the "install" target should not depend on "all"
this fix the issue with the failing:
make -C en_US.ISO8859-1/htdocs/ports -j1 install
PR: 222626
Modified:
head/de_DE.ISO8859-1/htdocs/ports/Makefile
head/en_US.ISO8859-1/htdocs/ports/Makefile
head/ja_JP.eucJP/htdocs/ports/Makefile
head/ru_RU.KOI8-R/htdocs/ports/Makefile
Modified: head/de_DE.ISO8859-1/htdocs/ports/Makefile
==============================================================================
--- head/de_DE.ISO8859-1/htdocs/ports/Makefile Fri Sep 29 00:29:20 2017 (r50955)
+++ head/de_DE.ISO8859-1/htdocs/ports/Makefile Fri Sep 29 08:51:42 2017 (r50956)
@@ -75,7 +75,7 @@ categories-alpha.xml: ${INDEX} categories categories.d
done
${PORTINDEX} ${INDEX} ${.CURDIR}
-install: all beforeinstall
+install: beforeinstall
all install clean:
cd ${.CURDIR}; \
Modified: head/en_US.ISO8859-1/htdocs/ports/Makefile
==============================================================================
--- head/en_US.ISO8859-1/htdocs/ports/Makefile Fri Sep 29 00:29:20 2017 (r50955)
+++ head/en_US.ISO8859-1/htdocs/ports/Makefile Fri Sep 29 08:51:42 2017 (r50956)
@@ -73,7 +73,7 @@ categories-alpha.xml: ${INDEX} categories categories.d
done
${PORTINDEX} ${INDEX} ${.CURDIR}
-install: all beforeinstall
+install: beforeinstall
all install clean:
cd ${.CURDIR}; \
Modified: head/ja_JP.eucJP/htdocs/ports/Makefile
==============================================================================
--- head/ja_JP.eucJP/htdocs/ports/Makefile Fri Sep 29 00:29:20 2017 (r50955)
+++ head/ja_JP.eucJP/htdocs/ports/Makefile Fri Sep 29 08:51:42 2017 (r50956)
@@ -79,7 +79,7 @@ categories-alpha.xml: ${INDEX} categories categories.d
done
${PORTINDEX} ${INDEX} ${.CURDIR}
-install: all beforeinstall
+install: beforeinstall
all install clean:
cd ${.CURDIR}; \
Modified: head/ru_RU.KOI8-R/htdocs/ports/Makefile
==============================================================================
--- head/ru_RU.KOI8-R/htdocs/ports/Makefile Fri Sep 29 00:29:20 2017 (r50955)
+++ head/ru_RU.KOI8-R/htdocs/ports/Makefile Fri Sep 29 08:51:42 2017 (r50956)
@@ -80,7 +80,7 @@ categories-alpha.xml: ${INDEX} categories categories.d
done
${PORTINDEX} ${INDEX} ${.CURDIR}
-install: all beforeinstall
+install: beforeinstall
all install clean:
cd ${.CURDIR}; \
More information about the svn-doc-head
mailing list