diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-25 11:03:31 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-25 11:03:31 +0100 |
commit | e5cbad371348619144cbd2086c2c8d6664ec4355 (patch) | |
tree | 7e9cf4bf3e98ac6b46423f5a5daf9482f8c18de8 /odk | |
parent | 10f8e05b8d890d9453a707fe83b9db464c756579 (diff) |
Resolves: rhbz#725144 wrong csh syntax
Diffstat (limited to 'odk')
-rw-r--r-- | odk/setsdkenv_unix.csh.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/odk/setsdkenv_unix.csh.in b/odk/setsdkenv_unix.csh.in index cb2b0f5df695..f48be7b6ce99 100644 --- a/odk/setsdkenv_unix.csh.in +++ b/odk/setsdkenv_unix.csh.in @@ -13,8 +13,7 @@ setenv OO_SDK_HOME '@OO_SDK_HOME@' # Office installation directory. # Example: set OFFICE_HOME=/opt/libreoffice -set OFFICE_HOME='@OFFICE_HOME@' -OFFICE_BASE_HOME='@OFFICE_BASE_HOME@' +setenv OFFICE_HOME '@OFFICE_HOME@' # URE installation directory. # Example: setenv OO_SDK_URE_HOME /opt/libreoffice/ure @@ -227,7 +226,7 @@ if ( $?OO_SDK_JAVA_HOME == 0) then endif -if [ "${platform}" == "MacOSX" ] then +if ( "${platform}" == "MacOSX" ) then # For URE, prepare symbolic links for libraries: # Only necessary on MacOSX, on other Unix systems the links are already prepared # in the SDK installation. |