Skip to content

Commit

Permalink
gettext bugfix: cd'ed to the wrong dir
Browse files Browse the repository at this point in the history
  • Loading branch information
kintel committed Jan 19, 2022
1 parent 5b4f189 commit 9b2f1db
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/macosx-build-dependencies.sh
Expand Up @@ -699,12 +699,11 @@ build_gettext()

# If we're building for multiple archs, create fat binaries
if (( ${#ARCHS[@]} > 1 )); then
cd $DEPLOYDIR
LIBS=()
for arch in ${ARCHS[*]}; do
LIBS+=(build-$arch/install/$DEPLOYDIR/lib/libintl.a)
done
lipo -create ${LIBS[@]} -output lib/libintl.a
lipo -create ${LIBS[@]} -output $DEPLOYDIR/lib/libintl.a
fi

echo $version > $DEPLOYDIR/share/macosx-build-dependencies/gettext.version
Expand Down

0 comments on commit 9b2f1db

Please sign in to comment.