Browse Source

help the rpm spec file recognize development versions now that
they're not called foo-cvs


svn:r8339

Roger Dingledine 17 years ago
parent
commit
36d4aff768
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tor.spec.in

+ 2 - 2
tor.spec.in

@@ -84,9 +84,9 @@
 # Using the build date ensures that every build really does get
 # a different release number.  We use this trick for CVS versions.
 # For release versions, we don't want or need it.
-%define is_cvs_version %(echo %{native_version} | grep 'cvs' > /dev/null && echo 1 || echo 0)
+%define is_dev_version %(echo %{native_version} | grep 'dev' > /dev/null && echo 1 || echo 0)
 
-%if %{is_cvs_version}
+%if %{is_dev_version}
 %define blddate %(date -u +"%Y%m%d%H%M")
 %define release %{pkgspec}.%{specver}.%{ostag}.%{blddate}
 %else