bugfix: Superfluous space at end of line after backslash killed script

This commit is contained in:
Jan Lindemann 2007-08-29 00:27:54 +00:00 committed by Jan Lindemann
commit 5ff23a5060

View file

@ -150,8 +150,8 @@ define increase_build_number
if [ "$(CHECK_CVS_SYNC_BEFORE_RPM_RELEASE)" = true ]; then \
$(check_cvs_sync) ;\
fi ;\
if [ "$(LAST_RPM_VERSION)" != $(RPM_VERSION) ]; then \
echo "+ no need to increase build number of $(RPM_VERSION), last rpm has $(LAST_RPM_VERSION)" ;\
if [ "$(LAST_RPM_VERSION)" != "$(RPM_VERSION)" ]; then \
echo "+ no need to increase build number of $(RPM_VERSION), last rpm has $(LAST_RPM_VERSION)" ;\
exit 0 ;\
fi ;\
echo -n "+ increasing build number to " ;\