Johannes Schindelin wrote: > On Fri, 25 May 2007, Johannes Sixt wrote: > > * perl scripts like git-remote contain a hard-coded path to the > > installation directory and don't work for this reason. > > GITPERLLIB should be set from the wrapper script, I think. The clean way is certainly to derive the directory from $0: use lib $0 =~ /^(.*)([\/\\]+[^\/\\]*){2}$/ ? ("$1/lib") : (); (although I'm not sure whether this would work during 'make test'). -- Hannes - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html