diff options
author | rillig <rillig@pkgsrc.org> | 2006-07-02 12:29:22 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-07-02 12:29:22 +0000 |
commit | 2b58ae79ad88a07eab52751a9dac23e40ed0be94 (patch) | |
tree | 250a664ae8a31fe72483cf18beb9d43d7f877f2e /Makefile | |
parent | fb994fcf607bf7c3c2f92fc89c0d514d6cadcf9b (diff) | |
download | pkgsrc-2b58ae79ad88a07eab52751a9dac23e40ed0be94.tar.gz |
Fixed some pkglint warnings: Use ${ECHO_N} instead of echo -n and
surround the sed command in the last line by single quotes.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.76 2005/09/28 07:49:22 rillig Exp $ +# $NetBSD: Makefile,v 1.77 2006/07/02 12:29:22 rillig Exp $ # # tools used by this Makefile @@ -128,7 +128,7 @@ ${.CURDIR}/PKGDB: echo "$$l" >> $$DB ; \ fi ; \ fi ; \ - echo -n "." ; \ + ${ECHO_N} "."; \ if [ `${EXPR} $$npkg % 100 = 0` -eq 1 ]; then \ echo " " ; \ echo "$$npkg" ; \ @@ -174,10 +174,10 @@ readme-all: README-all.html: @${RM} -f $@.new @${RM} -f $@.newsorted - @${ECHO} -n "Processing categories for $@:" + @${ECHO_N} "Processing categories for $@:" .for category in ${SUBDIR} @if [ -f ${category}/README.html ]; then \ - ${ECHO} -n ' ${category}' ; \ + ${ECHO_N} ' ${category}' ; \ ${GREP} '^<TR>' ${category}/README.html \ | ${SED} -e 's|"|"${category}/|' \ -e 's| <TD>| <TD>(<A HREF="${category}/README.html">${category}</A>) <TD>|' \ @@ -239,4 +239,4 @@ show-host-specific-pkgs: show-deps: @if [ ! -f "${.CURDIR}/INDEX" ]; then ${ECHO} "No index available -- please build it with 'make index'" >&2; ${FALSE}; fi @if [ -z "${PKG}" ]; then ${ECHO} "PKG variable not set" >&2; ${FALSE}; fi - @${GREP} -E "^([^|]*\|){7}([^|]* |)${PKG}>=" ${.CURDIR}/INDEX | ${SED} -n "s/^[^|]*|\([^|]*\)|.*/\1/p" | ${SORT} + @${GREP} -E "^([^|]*\|){7}([^|]* |)${PKG}>=" ${.CURDIR}/INDEX | ${SED} -n 's/^[^|]*|\([^|]*\)|.*/\1/p' | ${SORT} |