touchup syntax/output of new $D/$D check
authorMike Frysinger <vapier@gentoo.org>
Wed, 1 Feb 2006 23:05:23 +0000 (23:05 -0000)
committerMike Frysinger <vapier@gentoo.org>
Wed, 1 Feb 2006 23:05:23 +0000 (23:05 -0000)
svn path=/main/trunk/; revision=2621

bin/ebuild.sh

index f05f50e591271de93adc964a5c8a6527c9040bbe..8c1dcf73c73c6b8eb05482950e5b7d21364b59fd 100755 (executable)
@@ -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