Explicit removal of xobj/* when building Xenocara
"Aaron W. Hsu" <[email protected]>
| Newsgroups | gmane.os.openbsd.www |
|---|---|
| Message-ID | <[email protected]> |
Hello All, I recently ran into a problem of building Xenocara because I forgot to clear out /usr/xobj first. Normally, this doesn't cause problems for me, but I am just lucky I suppose. This time I wasn't, but I did remember that there is no explicit instruction to clear out xobj in the build instructions in the FAQ. The following diff changes this to instruct readers to clear out their xenocara object files before building. If I have misunderstood something, let me know, thanks! Aaron Hsu --- faq5.html.orig Thu Sep 11 14:13:19 2008 +++ faq5.html Thu Sep 11 14:13:53 2008 @@ -876,7 +876,8 @@ For building the standard xenocara tree as supported by OpenBSD, no external tools are needed. -<blockquote><pre># <b>cd /usr/xenocara</b> +<blockquote><pre># <b>rm -rf /usr/xobj/*</b> +# <b>cd /usr/xenocara</b> # <b>make bootstrap</b> # <b>make obj</b> # <b>make build</b> @@ -1659,4 +1660,4 @@ <a href="mailto:[email protected]">[email protected]</a> <br> <small>$OpenBSD: faq5.html,v 1.164 2008/05/24 03:28:14 nick Exp $</small> -</body></html> \ No newline at end of file +</body></html>