mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 22:43:03 +01:00
This should fix bug reported by Gabor: ./install.sh: 1570: [: /opt/firebird: unexpected operator
This commit is contained in:
parent
239bda87aa
commit
94bdb099b5
@ -370,7 +370,7 @@ EOF
|
||||
chown root:root $initScript
|
||||
chmod u=rwx,g=rx,o=r $initScript
|
||||
|
||||
if [ "${fb_install_prefix}" == "${default_prefix}" ]
|
||||
if [ "${fb_install_prefix}" = "${default_prefix}" ]
|
||||
then
|
||||
# RedHat and Mandrake specific
|
||||
if [ -x /sbin/chkconfig ]
|
||||
|
@ -1175,7 +1175,7 @@ extractBuildroot() {
|
||||
# depending upon presence of startup script starts super or classic server
|
||||
|
||||
startFirebird() {
|
||||
if [ "${fb_install_prefix}" == "${default_prefix}" ]
|
||||
if [ "${fb_install_prefix}" = "${default_prefix}" ]
|
||||
then
|
||||
if standaloneServerInstalled; then
|
||||
startService
|
||||
|
Loading…
Reference in New Issue
Block a user