diff options
Diffstat (limited to 'solenv/bin/deliver.pl')
-rwxr-xr-x | solenv/bin/deliver.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/deliver.pl b/solenv/bin/deliver.pl index 3860fc8650e7..3211e01cfba5 100755 --- a/solenv/bin/deliver.pl +++ b/solenv/bin/deliver.pl @@ -815,7 +815,7 @@ sub copy_if_newer } if ( $success ) { # handle special packaging of *.dylib files for Mac OS X - if ( $^O eq 'darwin' ) + if ( $ENV{OS} eq 'MACOSX' ) { system("macosx-create-bundle", "$to=$from.app") if ( -d "$from.app" ); system("ranlib", "$to" ) if ( $to =~ /\.a/ ); |