From: fuzzyray Date: Fri, 1 May 2009 17:33:51 +0000 (-0000) Subject: Fix typo in Makefile X-Git-Tag: gentoolkit-0.3.0_rc5~28 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6d7f0d8da0e3e8f7a74c49377dcc191fd4fdc002;p=gentoolkit.git Fix typo in Makefile svn path=/; revision=568 --- diff --git a/trunk/Makefile b/trunk/Makefile index 3906c52..76dfe1d 100644 --- a/trunk/Makefile +++ b/trunk/Makefile @@ -51,7 +51,7 @@ dist-gentoolkit: ( cd release ; tar zcf gentoolkit-$(VERSION)$(RELEASE_TAG).tar.gz gentoolkit-$(VERSION)$(RELEASE_TAG)/ ) install: - echo "Err0r: Must use either install-gentoolkit or install-gentoolkit-dev" + echo "Error: Must use either install-gentoolkit or install-gentoolkit-dev" exit 1 install-gentoolkit: diff --git a/trunk/src/echangelog/Makefile b/trunk/src/echangelog/Makefile index 61c5e57..b33e0ce 100644 --- a/trunk/src/echangelog/Makefile +++ b/trunk/src/echangelog/Makefile @@ -6,13 +6,16 @@ include ../../makedefs.mak -%.1 : %.pod - pod2man $< > $@ +#%.1 : %.pod +# pod2man $< > $@ .PHONY: all -all: echangelog.1 -dist: echangelog.1 +#all: echangelog.1 +all: + +#dist: echangelog.1 +dist: mkdir -p ../../$(distdir)/src/echangelog/ cp Makefile AUTHORS README TODO ChangeLog echangelog echangelog.pod echangelog.1 ../../$(distdir)/src/echangelog/ diff --git a/trunk/src/euse/euse b/trunk/src/euse/euse index 7400709..f9fd2fd 100755 --- a/trunk/src/euse/euse +++ b/trunk/src/euse/euse @@ -347,7 +347,7 @@ showinstdesc() { local current_desc local args local -i foundone=0 - local IFS + local OIFS="$IFS" args=("${@:-*}") @@ -377,7 +377,7 @@ showinstdesc() { echo "$desc" # get list of installed packages matching this USE flag. IFS=$'\n' - packages=($(equery -q -C hasuse -i "${1}" | awk '{ print $(NF-1) }')) + packages=($(equery -q -C hasuse -i "${1}" | awk '{ print $(NF-1) }' | sort)) foundone+=${#packages[@]} printf "\nInstalled packages matching this USE flag: " if [ ${foundone} -gt 0 ]; then @@ -397,7 +397,9 @@ showinstdesc() { # exit status of equery instead of a subshell and pipe to wc -l if [ $(equery -q -C list -i -e "${pkg}" | wc -l) -gt 0 ]; then foundone=1 + IFS="$OIFS" get_flagstatus "${flag}" + IFS=': ' printf "%s (%s):\n%s\n\n" "${flag}" "${pkg}" "${desc#- }" fi done < <(grep ":${1} *-" "${descdir}/use.local.desc") @@ -409,6 +411,7 @@ showinstdesc() { if [ ${foundone} -lt 1 ]; then echo "no matching entries found" fi + IFS="$OIFS" } # show a list of all currently active flags and where they are activated