diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2008-08-31 09:22:08 -0700 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2008-08-31 09:22:08 -0700 |
commit | 4c1837681fd3320654919d1dd7b40757f08a803e (patch) | |
tree | a766c93f3f0373e45d91089934669a3a4745dbe5 | |
parent | 660ba28d97c01b8136aee90e9c75da4c3b1ad482 (diff) |
Set release date statically in configureinitd-tools-0.1
No need to have the release date recomputed every time someone runs
configure.
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 1afe2ef..f4053d2 100644 --- a/configure.ac +++ b/configure.ac @@ -2,6 +2,10 @@ AC_INIT([initd-tools],[0.1],[dbn.lists@gmail.com]) AC_CONFIG_AUX_DIR([auto]) AM_INIT_AUTOMAKE +dnl Substituted in manpages +RELDATE='31 Aug 2008' +AC_SUBST([RELDATE]) + AC_CONFIG_HEADERS([config.h]) AC_GNU_SOURCE @@ -48,10 +52,6 @@ AC_ARG_WITH([initdlibdir], ) AC_SUBST([libinitddir]) -dnl Substituted in manpages -RELDATE=`${DATE-date} -u +'%d %b %Y' 2>/dev/null` -AC_SUBST([RELDATE]) - AC_CONFIG_FILES([ Makefile lib/Makefile |