# HG changeset patch # User Titus von Boxberg # Date 1274092052 -7200 # Node ID 8307ceabe5c090db3a7e36bb28fc61614d083a91 # Parent a86d3c6ad7fe6aac58fd763d91dd24eee4b27a8b scripts/wrapper.in: Add a comment about readlink not being portable. Documented that the call to readlink will not work on BSD systems. diff -r a86d3c6ad7fe -r 8307ceabe5c0 scripts/wrapper.in --- a/scripts/wrapper.in Mon May 17 12:23:24 2010 +0200 +++ b/scripts/wrapper.in Mon May 17 12:27:32 2010 +0200 @@ -1,5 +1,10 @@ #!/bin/sh +# this wrapper will not work under BSD systems or others +# not containig the GNU readlink. +# Under those, wrapper.c will forcibly be used +# regardless of the config file setting. + canonicalizedname=$(readlink -nm "${0}") dirname="$(dirname "${canonicalizedname}")" basename="$(basename "${canonicalizedname}")"