[svn-commits] lmadsen: branch 1.4 r200037 - /branches/1.4/build_tools/make_version_h
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Thu Jun 11 07:12:09 CDT 2009
Author: lmadsen
Date: Thu Jun 11 07:12:06 2009
New Revision: 200037
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=200037
Log:
Fix path for .flavor and .version.
(issue #14737)
Reported by: davidw
Patches:
flavor.patch uploaded by davidw (license 780)
Tested by: davidw
Modified:
branches/1.4/build_tools/make_version_h
Modified: branches/1.4/build_tools/make_version_h
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.4/build_tools/make_version_h?view=diff&rev=200037&r1=200036&r2=200037
==============================================================================
--- branches/1.4/build_tools/make_version_h (original)
+++ branches/1.4/build_tools/make_version_h Thu Jun 11 07:12:06 2009
@@ -1,5 +1,5 @@
#!/bin/sh
-if [ ! -f ../.flavor ]; then
+if [ ! -f .flavor ]; then
cat << END
/*
* version.h
@@ -10,8 +10,8 @@
END
else
- aadkver=`cat ../.version`
- aadkflavor=`cat ../.flavor`
+ aadkver=`cat .version`
+ aadkflavor=`cat .flavor`
cat << END
/*
* version.h
More information about the svn-commits
mailing list