Remove spaces at end of line.

This commit is contained in:
Jonathan Schleifer 2008-12-23 04:53:27 +01:00
parent 7cd4dda05a
commit 142ae8f527
2 changed files with 3 additions and 3 deletions

View file

@ -397,7 +397,7 @@ clean:
${MAKE} ${MFLAGS} clean || exit 1; \
${DIR_LEAVE}; \
done
for i in ${OBJS} ${CLEAN} ${CLEAN_LIB} ${DEPS}; do \
if test -f $$i -o -d $$i; then \
if rm -fr $$i; then \
@ -414,7 +414,7 @@ distclean: clean
${MAKE} ${MFLAGS} distclean || exit 1; \
${DIR_LEAVE}; \
done
for i in ${PROG} ${PROG_NOINST} ${LIB} ${LIB_NOINST} ${STATIC_LIB} ${STATIC_LIB_NOINST} ${PLUGIN} ${PLUGIN_NOINST} ${DISTCLEAN} .deps *~; do \
if test -f $$i -o -d $$i; then \
if rm -fr $$i; then \