Skip to content
This repository has been archived by the owner on Feb 9, 2021. It is now read-only.

Commit

Permalink
Already remove conftest.dSYM during configure.
Browse files Browse the repository at this point in the history
  • Loading branch information
EdSchouten committed Oct 26, 2008
1 parent fad7d6b commit d8303fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .gitignore
@@ -1,7 +1,6 @@
.DS_Store .DS_Store
dbus_binding.h dbus_binding.h
herrie/*.core herrie/*.core
herrie/*.dSYM
herrie/*.mo herrie/*.mo
herrie/*.o herrie/*.o
herrie/.gdb_history herrie/.gdb_history
Expand Down
6 changes: 3 additions & 3 deletions herrie/configure
Expand Up @@ -385,7 +385,8 @@ then
echo "See the README file for a list of dependencies" echo "See the README file for a list of dependencies"
exit 1 exit 1
fi fi
rm conftest$CFG_BINEXT rm -f conftest$CFG_BINEXT
rm -Rf conftest.dSYM


# Don't generate duplicate rules # Don't generate duplicate rules
SRCS=`echo $SRCS | xargs -n 1 | sort | uniq` SRCS=`echo $SRCS | xargs -n 1 | sort | uniq`
Expand All @@ -410,9 +411,8 @@ $APP_NAME.1.gz: $MANFILES Makefile
# Generating manual page $APP_NAME.1.gz # Generating manual page $APP_NAME.1.gz
${DOIT}sed $MANREGEX $MANFILES | gzip -9 > $APP_NAME.1.gz ${DOIT}sed $MANREGEX $MANFILES | gzip -9 > $APP_NAME.1.gz
clean: clean:
# Removing $APP_NAME$CFG_BINEXT $APP_NAME.1.gz dbus_binding.h *.dSYM *.mo *.o # Removing $APP_NAME$CFG_BINEXT $APP_NAME.1.gz dbus_binding.h *.mo *.o
${DOIT}rm -f $APP_NAME$CFG_BINEXT $APP_NAME.1.gz dbus_binding.h *.mo *.o ${DOIT}rm -f $APP_NAME$CFG_BINEXT $APP_NAME.1.gz dbus_binding.h *.mo *.o
${DOIT}rm -Rf *.dSYM
distclean: clean distclean: clean
# Removing Makefile # Removing Makefile
${DOIT}rm -f Makefile ${DOIT}rm -f Makefile
Expand Down

0 comments on commit d8303fc

Please sign in to comment.