Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Feb 2016 14:08:32 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 207062] [new port] devel/yaggo  Poudriere logs attached
Message-ID:  <bug-207062-13-NnbxwYNFtB@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-207062-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-207062-13@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D207062

Raphael Kubo da Costa <rakuco@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rakuco@FreeBSD.org

--- Comment #5 from Raphael Kubo da Costa <rakuco@FreeBSD.org> ---
A couple of suggestions:
* You could set NO_ARCH=3Dyes (it's also suggested in the "install" phase i=
n your
Poudriere logs).
* You can make your Makefile patch smaller by doing
  MAKE_ARGS=3D prefix=3D${STAGEDIR}${PREFIX}

  If you do this, your patch can be reduced to changing the man pages locat=
ion:

--- Makefile
+++ Makefile
@@ -6,7 +6,7 @@ all: bin/create_yaggo_one_file
 install: all
        mkdir -p $(prefix)/bin
        mkdir -p $(prefix)/share/doc/yaggo
-       mkdir -p $(prefix)/share/man/man1
+       mkdir -p $(prefix)/man/man1
        cp ./yaggo $(prefix)/bin
        cp ./README.md $(prefix)/share/doc/yaggo
-       ./yaggo -m $(prefix)/share/man/man1/yaggo.1
+       ./yaggo -m $(prefix)/man/man1/yaggo.1

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-207062-13-NnbxwYNFtB>