You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
844 B

  1. diff --git a/Makefile b/Makefile
  2. index 5757ae3..20d52ce 100644
  3. --- a/Makefile
  4. +++ b/Makefile
  5. @@ -157,11 +157,7 @@ wipe.o : wipe.c random.h misc.h version.h
  6. $(CC) $(CCO) $(CCOC) wipe.c -o wipe.o
  7. version.h: always
  8. - if which git >/dev/null 2>&1 ; then \
  9. - git rev-list --max-count=1 HEAD | sed -e 's/^/#define WIPE_GIT "/' -e 's/$$/"/' >version.h ; \
  10. - else \
  11. - echo '#define WIPE_GIT "(unknown, compiled without git)"' >version.h ; \
  12. - fi
  13. + echo '#define WIPE_GIT "(unknown, compiled without git)"' >version.h ; \
  14. random.o : random.c misc.h md5.h
  15. $(CC) $(CCO) $(CCOC) random.c -o random.o
  16. diff --git a/wipe.c b/wipe.c
  17. index 5a215e8..5a4f2ad 100644
  18. --- a/wipe.c
  19. +++ b/wipe.c
  20. @@ -24,7 +24,7 @@
  21. /*** defines */
  22. -#define WIPE_VERSION "0.23"
  23. +#define WIPE_VERSION "0.24"
  24. #define WIPE_DATE "2016-11-03"
  25. /* exit codes */