patch-version_sh 632 B

123456789101112131415161718192021222324
  1. --- iw-0.9.21.orig/version.sh 2010-09-24 17:44:07.000000000 +0200
  2. +++ iw-0.9.21/version.sh 2011-01-09 22:41:17.000000000 +0100
  3. @@ -5,20 +5,6 @@ OUT="$1"
  4. echo '#include "iw.h"' > "$OUT"
  5. -if head=`git rev-parse --verify HEAD 2>/dev/null`; then
  6. - git update-index --refresh --unmerged > /dev/null
  7. - descr=$(git describe)
  8. -
  9. - # on git builds check that the version number above
  10. - # is correct...
  11. - [ "${descr%%-*}" = "v$VERSION" ] || exit 2
  12. -
  13. - v="${descr#v}"
  14. - if git diff-index --name-only HEAD | read dummy ; then
  15. - v="$v"-dirty
  16. - fi
  17. -else
  18. - v="$VERSION"
  19. -fi
  20. +v="$VERSION"
  21. echo "const char iw_version[] = \"$v\";" >> "$OUT"