pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/colorit/files Fix in colorit_funcs (use ${var...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/22b0d6cb2bc9
branches:  trunk
changeset: 603753:22b0d6cb2bc9
user:      cheusov <cheusov%pkgsrc.org@localhost>
date:      Sat May 12 15:43:47 2012 +0000

description:
Fix in colorit_funcs (use ${var:=val} for initializing variables)

diffstat:

 textproc/colorit/files/colorit_funcs |  26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)

diffs (37 lines):

diff -r eb28c174d7f7 -r 22b0d6cb2bc9 textproc/colorit/files/colorit_funcs
--- a/textproc/colorit/files/colorit_funcs      Sat May 12 15:18:23 2012 +0000
+++ b/textproc/colorit/files/colorit_funcs      Sat May 12 15:43:47 2012 +0000
@@ -4,20 +4,20 @@
 #        alias make=colored_make
 #        ...
 
-: ${PROG_COLORIT=colorit}
+: ${PROG_COLORIT:=colorit}
 
-: ${PROG_MAKE=make}
-: ${PROG_GMAKE=gmake}
-: ${PROG_BMAKE=bmake}
-: ${PROG_MKCMAKE=mkcmake}
-: ${PROG_GPP=g++}
-: ${PROG_GCC=gcc}
-: ${CVS_PATCH=cvs_patch}
-: ${CVS_WDIFF=cvs_wdiff}
-: ${PROG_DIFF=diff}
-: ${PROG_LS=ls}
-: ${PROG_APT_GET=apt-get}
-: ${PROG_NIH=nih}
+: ${PROG_MAKE:=make}
+: ${PROG_GMAKE:=gmake}
+: ${PROG_BMAKE:=bmake}
+: ${PROG_MKCMAKE:=mkcmake}
+: ${PROG_GPP:=g++}
+: ${PROG_GCC:=gcc}
+: ${CVS_PATCH:=cvs_patch}
+: ${CVS_WDIFF:=cvs_wdiff}
+: ${PROG_DIFF:=diff}
+: ${PROG_LS:=ls}
+: ${PROG_APT_GET:=apt-get}
+: ${PROG_NIH:=nih}
 
 : ${COLORIT_ROOT=${HOME}/.colorit.d}
 



Home | Main Index | Thread Index | Old Index