diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makefile.am | 8 |
2 files changed, 8 insertions, 4 deletions
@@ -1,3 +1,7 @@ +2006-09-27 Marcus Brinkmann <[email protected]> + + * Makefile.am: Fix cut & paste error. + 2006-09-25 Werner Koch <[email protected]> Released 1.9.90. diff --git a/Makefile.am b/Makefile.am index fd7f25386..c19f7c3f1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -57,14 +57,14 @@ else scd = endif if BUILD_TOOLS -scd = tools +tools = tools else -scd = +tools = endif if BUILD_DOC -scd = doc +doc = doc else -scd = +doc = endif if HAVE_W32_SYSTEM |