summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2015-09-21 10:01:46 +0200
committerAlexis Ballier <aballier@gentoo.org>2015-09-21 10:01:46 +0200
commitc4290c12e46e122717586141bfa8a75dcf33220e (patch)
treef2759cf0a8181460157f5a846711e4627a36f310 /eclass
parenteclass: texlive-module.eclass: Do not sort execute directives to obtain same ... (diff)
downloadgentoo-c4290c12e46e122717586141bfa8a75dcf33220e.tar.gz
gentoo-c4290c12e46e122717586141bfa8a75dcf33220e.tar.bz2
gentoo-c4290c12e46e122717586141bfa8a75dcf33220e.zip
eclass: texlive-common.eclass: Fix long standing bug: Do not overwrite existing symlinks.
The bug has been here since the beginning but surprisingly enough, it was only noticed now in bug #560722.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/texlive-common.eclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/texlive-common.eclass b/eclass/texlive-common.eclass
index e4798b3acd95..ca0f4c6123ce 100644
--- a/eclass/texlive-common.eclass
+++ b/eclass/texlive-common.eclass
@@ -85,7 +85,7 @@ texlive-common_do_symlinks() {
if [ $1 = $2 ];
then
einfo "Symlink $1 -> $2 skipped"
- elif [ -e "${ED}/usr/bin/$1" ];
+ elif [ -e "${ED}/usr/bin/$1" -o -L "${ED}/usr/bin/$1" ];
then
einfo "Symlink $1 skipped (file exists)"
else