diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-03-27 03:02:30 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-03-27 03:02:30 +0000 |
commit | cfa89247a34006a1078a253abc0090fc98cb703d (patch) | |
tree | e17aa6fbde150d6ed4dad43aa2f526056171e9aa | |
parent | 598a46df25a4e0fde644880012ec9b0a28e2bfc0 (diff) | |
download | portage-cfa89247a34006a1078a253abc0090fc98cb703d.tar.gz portage-cfa89247a34006a1078a253abc0090fc98cb703d.tar.bz2 portage-cfa89247a34006a1078a253abc0090fc98cb703d.zip |
For consistency in output with other helpers, check for file existence
before calling install.
svn path=/main/trunk/; revision=13201
-rwxr-xr-x | bin/ebuild-helpers/doexe | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/ebuild-helpers/doexe b/bin/ebuild-helpers/doexe index 9d35c8e0d..19e80b2d0 100755 --- a/bin/ebuild-helpers/doexe +++ b/bin/ebuild-helpers/doexe @@ -26,7 +26,9 @@ for x in "$@" ; do else mysrc="${x}" fi - if ! install $EXEOPTIONS "$mysrc" "$D$_E_EXEDESTTREE_" ; then + if [ -e "$mysrc" ] ; then + install $EXEOPTIONS "$mysrc" "$D$_E_EXEDESTTREE_" + else echo "!!! ${0##*/}: $mysrc does not exist" 1>&2 false fi |