hi,

this is very low priority, only for the wishlist.

all the shell scripts in the current HEAD use a

#!/bin/bash

as first line. while this seems to be ok for various linux systems my freebsd systems don't like this :-). "bash" is in "/usr/local/bin". and i don't wan't to link bash to another location, because bash is an addon to the system so it has to be in "/usr/local".

perhaps it would be great to change the first line to

#!/usr/bin/env bash

because the "/usr/bin/env" should be located here on every modern unix. if this change would break the work of current development, forget this mail.

here is a little script for *BSD users how to patch the current shellscripts so they work at least with freebsd6:

#!/usr/bin/env bash
for foo in `find . -name '*.sh'`; do sed -i -e 's/bin\/bash/usr\/local\/bin\/bash/g' $foo; done

note: the "for ..." with the sed-command is ONE line, the line break here is from my mailclient!

run this script once in the "tools" directory of qooxdoo after a checkout.

</usc>


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
Qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to