Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 03 Nov 2014 06:42:41 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 193134] [NEW PORT] www/seafile: Framework for writing networked applications
Message-ID:  <bug-193134-13-WMNX2OeHwl@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-193134-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-193134-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=193134

--- Comment #18 from John Marino <marino@FreeBSD.org> ---
okay, "@${MKDIR} -m 0755" needs to be just "@${MKDIR}"

"${INSTALL} -m 0755 ${WRKSRC}/doc/seafile-tutorial.doc"  (for example)
this is wrong too.
first, it's installing this as executable.
secondly, you need to use an install macro, e.g.

${INSTALL_PROGRAM}
${INSTALL_DATA}
${INSTALL_MAN}
${INSTALL_SCRIPT}

used INSTALL_DATA for non-executable, INSTALL_PROGRAM for executables that can
be stripped, INSTALL_SCRIPT for executables that can't be stripped (e.g. bourne
shell scripts)

search /usr/ports/Mk/bsd.port.mk for documentation about these commands if you
need more info.

-- 
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-193134-13-WMNX2OeHwl>