The install.sh script has two "bash-isms" that need fixing
1) Take the space out of the #!/bin/bash
- #! /bin/bash + #!/bin/bash
2) Replace == with =
- if [ "$PREFIX" == "/" ] + if [ "$PREFIX" = "/" ]
By Keith Lofstrom 2005 February 18
The install.sh script has two "bash-isms" that need fixing
1) Take the space out of the #!/bin/bash
- #! /bin/bash + #!/bin/bash
2) Replace == with =
- if [ "$PREFIX" == "/" ] + if [ "$PREFIX" = "/" ]
By Keith Lofstrom 2005 February 18
InstallBug (last edited 2011-01-24 05:26:29 by KeithLofstrom)