diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-02-01 23:05:23 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-02-01 23:05:23 +0000 |
commit | 634cce2147e60653f3ff548887a75060b2435faf (patch) | |
tree | 1e4d2a3e165843e4adfbbc44697c3ad668c4fb6f | |
parent | 410577400f21adfb1daad5bfbc73ea21dddb725e (diff) | |
download | portage-634cce2147e60653f3ff548887a75060b2435faf.tar.gz portage-634cce2147e60653f3ff548887a75060b2435faf.tar.bz2 portage-634cce2147e60653f3ff548887a75060b2435faf.zip |
touchup syntax/output of new $D/$D check
svn path=/main/trunk/; revision=2621
-rwxr-xr-x | bin/ebuild.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index f05f50e59..8c1dcf73c 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1150,13 +1150,13 @@ dyn_install() { die "There are ${UNSAFE} unsafe files. Portage will not install them." fi - if [[ -d "${D}/${D}" ]] ; then + if [[ -d ${D}/${D} ]] ; then declare -i INSTALLTOD=0 for i in $(find "${D}/${D}/"); do - echo "QA Notice: ${i##${D}/}installed to \${D}/\${D}" + echo "QA Notice: /${i##${D}/${D}} installed in \${D}/\${D}" ((INSTALLTOD++)) done - die "Aborting due to QA concerns: ${INSTALLTOD} files installed to ${D}/${D}" + die "Aborting due to QA concerns: ${INSTALLTOD} files installed in ${D}/${D}" unset INSTALLTOD fi |