| Summary: | `make all' does not work together with `make obj' | ||
|---|---|---|---|
| Product: | Documentation | Reporter: | Wolfram Schneider <wosch> |
| Component: | Books & Articles | Assignee: | Wolfram Schneider <wosch> |
| Status: | Closed Overcome By Events | ||
| Severity: | Affects Only Me | ||
| Priority: | --- | ||
| Version: | Latest | ||
| Hardware: | Any | ||
| OS: | Any | ||
|
Description
Wolfram Schneider
2017-09-21 11:51:34 UTC
My watcher build script actually runs: make obj && make objlink && make Here ist my test script, it fails on all machines I tried: svn checkout -q https://svn.FreeBSD.org/doc/head doc cd doc rm -rf /usr/obj; (make clean; make obj && make objlink && make) >& log; echo $? 1 I'm not sure if it worth to spent time on this. `make obj' is nice to have, not a must have. Other doc build bugs have a higher priority (as files not rebuild after a change) The workaround to disable "obj" is easy export NO_OBJ=YES A commit references this bug: Author: wosch Date: Fri Oct 6 10:44:00 UTC 2017 New revision: 51065 URL: https://svnweb.freebsd.org/changeset/doc/51065 Log: 'make obj' doesn't really work for the docs, disable it by default PR: 222488 Changes: head/share/mk/doc.project.mk head/share/mk/web.site.mk |