Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Nov 2014 18:57:15 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 194669] [maintainer] centos-6.5 editors/sublime3 update (fix gtk2 dependency, add desktop file)
Message-ID:  <bug-194669-13-iIgr6Xzfox@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-194669-13@https.bugs.freebsd.org/bugzilla/>
References:  <bug-194669-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=194669

--- Comment #15 from John Marino <marino@FreeBSD.org> ---
(In reply to miguelmclara from comment #14)
> Thanks for the warning and sorry for being a PITA but just to be sure should
> I remove them from the MKDIR commands too?
> I know you said "it is permissible on ${MKDIR}", but is the best way to not
> strip off those too?

Most people leave the "@" in front of ${MKDIR}.
Personally I also combine mkdir commands, e.g. 

@${MKDIR} ${dir1}
@${MKDIR} ${dir2}
@${MKDIR} ${dir3}

would change to :

@${MKDIR} ${dir1} \
   ${dir2} \
   ${dir3}

I usually put 1 directory per line for readability and I usually put mkdir as
the first command.  These are just style things I personally do, so other
people do it too, but it's optional.

-- 
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-194669-13-iIgr6Xzfox>