Skip to content

Commit

Permalink
Eliminate dangling a.out.dSYM after configure run on Macs
Browse files Browse the repository at this point in the history
  • Loading branch information
louisaslett committed Sep 26, 2024
1 parent 667c798 commit e641ceb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@ sed -e "s|@cflags@|$PKG_CFLAGS|" -e "s|@libs@|$PKG_LIBS|" src/Makevars.in > src/
if [ -f a.out ] ; then
rm a.out
fi
if [ -e a.out.dSYM ] ; then
rm -rf a.out.dSYM
fi

# Success
exit 0

0 comments on commit e641ceb

Please sign in to comment.