summaryrefslogtreecommitdiffstats
path: root/bin/doexe
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-11-15 02:25:05 +0000
committerZac Medico <zmedico@gentoo.org>2008-11-15 02:25:05 +0000
commit22532ec8c8a030d4d513947a2ad12e0eab5e61cd (patch)
tree73560dd0f61931f4492942c450075c78582e29dd /bin/doexe
parentf2c053b8516155d9e4b1e866e67c0c24c0702573 (diff)
downloadportage-22532ec8c8a030d4d513947a2ad12e0eab5e61cd.tar.gz
portage-22532ec8c8a030d4d513947a2ad12e0eab5e61cd.tar.bz2
portage-22532ec8c8a030d4d513947a2ad12e0eab5e61cd.zip
Fix new* and do* ebuild helpers to generate consistent error messages for
missing files and generate an appropriate QA Notice when such an error is detected in the build log. Thanks to Diego 'Flameeyes' Pettenò <flameeyes@g.o> for the suggestion. (trunk r11916) svn path=/main/branches/2.1.6/; revision=11917
Diffstat (limited to 'bin/doexe')
-rwxr-xr-xbin/doexe3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/doexe b/bin/doexe
index 012e32034..6e72c1c75 100755
--- a/bin/doexe
+++ b/bin/doexe
@@ -24,5 +24,6 @@ for x in "$@" ; do
else
mysrc="${x}"
fi
- install ${EXEOPTIONS} "${mysrc}" "${D}${_E_EXEDESTTREE_}"
+ install $EXEOPTIONS "$mysrc" "$D$_E_EXEDESTTREE_" || \
+ echo "!!! ${0##*/}: $mysrc does not exist" 1>&2
done