summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in10
1 files changed, 1 insertions, 9 deletions
diff --git a/Makefile.in b/Makefile.in
index 59817f169..fe56c8c83 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -269,16 +269,8 @@ dist: $(DISTFILES)
# This is ugly but it works...
update_version:
for f in Makefile.in $(VERSIONFILES); do \
- if co -l -q $$f; then \
- CHECKIN=1; \
- else \
- CHECKIN=0; \
- fi; \
- VERSION=`sed -n 's/static char version\[\] = "\([^"]*\)".*$$/\1/p' < version.h`; \
+ VERSION=`sed -n 's/static const char version\[\] = "\([^"]*\)".*$$/\1/p' < version.h`; \
sed -e 's/\(VERSION =\) [^ ,:][^ ,:]*/\1 '$$VERSION'/' -e 's/\(CU sudo version\) [^ ,:][^ ,:]*/\1 '$$VERSION'/' < $$f > $$f.$$$$; \
mv -f $$f.$$$$ $$f; \
chmod 644 $$f; \
- if [ $$CHECKIN -eq 1 ]; then \
- ci -u -m"updated version" $$f; \
- fi; \
done