From bb3584db7544853f8868ba2e1329f2807980f7ee Mon Sep 17 00:00:00 2001 From: rliebscher Date: Thu, 22 Dec 2011 19:44:37 +0000 Subject: [PATCH] * configure.ac: Add writing of definition of confsubst to config.status, so it can run alone, not only called by configure. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1025 81a1dc3b-b13d-400b-aceb-764788c761c2 --- ChangeLog | 5 +++++ configure.ac | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 70f44db4..54642619 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-12-22 Rene Liebscher + + * configure.ac: Add writing of definition of confsubst to config.status, + so it can run alone, not only called by configure. + 2011-12-17 Rene Liebscher patch #7680: Fixing timeout problem in ser_recv in ser_win32.c diff --git a/configure.ac b/configure.ac index b3b8e66d..e686b7aa 100644 --- a/configure.ac +++ b/configure.ac @@ -285,7 +285,6 @@ if test "$enabled_parport" = "yes"; then else confsubst="-e /^@HAVE_PARPORT_BEGIN@/,/^@HAVE_PARPORT_END@/d" fi -export confsubst # If we are compiling with gcc, enable all warning and make warnings errors. if test "$GCC" = yes; then @@ -380,6 +379,7 @@ AC_CONFIG_FILES([ # avrdude.conf file. AC_CONFIG_FILES([avrdude.conf.tmp:avrdude.conf.in], - [sed $confsubst avrdude.conf.tmp > avrdude.conf]) + [sed $confsubst avrdude.conf.tmp > avrdude.conf], + [confsubst="$confsubst"]) AC_OUTPUT