diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-29 21:17:57 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-29 21:17:57 +0000 |
commit | 3115fb3e0d8d769e2994bcd6463e5403188fab4b (patch) | |
tree | bded29302158765542a4182b9ecc7bcffa343a0b /db | |
parent | af8389231cd953919be4c6d7e7a8a04504db9935 (diff) |
Adapting some builds per the recent oe metadata handling changes.
BKrev: 40689285Q7zUjk20aonhEakS324blw
Diffstat (limited to 'db')
-rw-r--r-- | db/db3_3.2.9.oe | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/db/db3_3.2.9.oe b/db/db3_3.2.9.oe index c6d2d0b957..163081be6c 100644 --- a/db/db3_3.2.9.oe +++ b/db/db3_3.2.9.oe @@ -26,13 +26,13 @@ do_configure_prepend () { . ./RELEASE (echo "AC_DEFUN(AM_VERSION_SET, [" && echo "AC_SUBST(DB_VERSION_MAJOR)" && - echo "DB_VERSION_MAJOR=$DB_VERSION_MAJOR" && + echo "DB_VERSION_MAJOR=\$DB_VERSION_MAJOR" && echo "AC_SUBST(DB_VERSION_MINOR)" && - echo "DB_VERSION_MINOR=$DB_VERSION_MINOR" && + echo "DB_VERSION_MINOR=\$DB_VERSION_MINOR" && echo "AC_SUBST(DB_VERSION_PATCH)" && - echo "DB_VERSION_PATCH=$DB_VERSION_PATCH" && + echo "DB_VERSION_PATCH=\$DB_VERSION_PATCH" && echo "AC_SUBST(DB_VERSION_STRING)" && - echo "DB_VERSION_STRING=\"\\\"$DB_VERSION_STRING\\\"\"" && + echo "DB_VERSION_STRING=\"\\\"\$DB_VERSION_STRING\\\"\"" && echo "])dnl") > acinclude.m4 ) } |