Date: prev next · Thread: first prev next last
2011 Archives by date, by thread · List index


for cygwin -e check seems to check if the "target of the symlink"
exists, not the symlink ifself...
But there is a error in the script that this function gets called in the
main repro (bootstrap) ... and create symlinks like "ln -s test test".

I will create a new patch.


Am 19.01.2011 23:03, schrieb Norbert Thiebaud:
Ok, I'm confused:

+++ b/g
@@ -237,7 +237,7 @@ for REPO in $DIRS ; do
                     for link in $(ls) ; do
                         if [ ! -e "$RAWBUILDDIR/$link" ] ; then

If "$RAWBUILDDIR/$link" does not exist, why would you need to 'force'
the creation of the link ?

maybe you want
                         if [ ! -e "$RAWBUILDDIR/$link/." ] ; then
instead... just in case a dangling link pass the -e test on windows...

                             echo "Creating missing link $link"
-                            ln -s "$DIR/$link" "$RAWBUILDDIR/$link"
+                            ln -sf "$DIR/$link" "$RAWBUILDDIR/$link"
                         fi
                     done
                     ;;


Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.