From c004dbac404ff315c72148c5a110bdbac08f7f02 Mon Sep 17 00:00:00 2001 From: Kritika Agarwal Date: Wed, 9 Aug 2023 13:46:06 +0530 Subject: [PATCH] Stackbuilder was not launching after removing expat from build osx script so adding it again --- server/build-osx.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/server/build-osx.sh b/server/build-osx.sh index d1e82d18..fa286b30 100755 --- a/server/build-osx.sh +++ b/server/build-osx.sh @@ -248,6 +248,7 @@ _build_server_osx() { ssh $PG_SSH_OSX "cp -pR /opt/local/Current/lib/libjpeg*.dylib $PG_STAGING/stackbuilder.app/Contents/Frameworks/" || _die "Failed to copy the latest libjpeg" ssh $PG_SSH_OSX "cp -pR /opt/local/Current/lib/libpng16*.dylib $PG_STAGING/stackbuilder.app/Contents/Frameworks/" || _die "Failed to copy the latest libpng16" ssh $PG_SSH_OSX "cp -pR /opt/local/Current/lib/libiconv*.dylib $PG_STAGING/stackbuilder.app/Contents/Frameworks/" || _die "Failed to copy the latest libiconv" + ssh $PG_SSH_OSX "cp -pR /opt/local/Current/lib/libexpat*.dylib $PG_STAGING/stackbuilder.app/Contents/Frameworks/" || _die "Failed to copy the latest libexpat" # Copying plperl to staging/osx directory as we would not like to update the _rewrite_so_refs for it. ssh $PG_SSH_OSX "cp -f $PG_PATH_OSX/server/staging_cache/osx.build/lib/postgresql/plperl.so $PG_PATH_OSX/server/staging_cache/osx.build/"