aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Fitzsimmons <fitzsim@redhat.com>2001-12-18 22:52:52 +0000
committerThomas Fitzsimmons <fitzsim@redhat.com>2001-12-18 22:52:52 +0000
commit08e857b49a2fe0726bd8123f0c6a195cf58ea320 (patch)
tree7d064399cf9d8c34109c2132be813bbbcb01ba46
parentf63c362a3703719616a066500d57ed4ff8064a16 (diff)
downloadnewlib-08e857b49a2fe0726bd8123f0c6a195cf58ea320.zip
newlib-08e857b49a2fe0726bd8123f0c6a195cf58ea320.tar.gz
newlib-08e857b49a2fe0726bd8123f0c6a195cf58ea320.tar.bz2
* Makefile.am (DOCDIR): Force to empty string when doc
directory is not present.
-rw-r--r--newlib/ChangeLog5
-rw-r--r--newlib/Makefile.am2
-rw-r--r--newlib/Makefile.in2
3 files changed, 8 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index d1e4e74..b5df761 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,8 @@
+2001-12-18 Thomas Fitzsimmons <fitzsim@redhat.com>
+
+ * Makefile.am (DOCDIR): Force to empty string when doc
+ directory is not present.
+
2001-12-17 Thomas Fitzsimmons <fitzsim@redhat.com>
* libc/stdlib/Makefile.am (LIB_COMPILE): Change to equal
diff --git a/newlib/Makefile.am b/newlib/Makefile.am
index a759e2c..5a98d93 100644
--- a/newlib/Makefile.am
+++ b/newlib/Makefile.am
@@ -57,6 +57,8 @@ FLAGS_TO_PASS=$(AM_MAKEFLAGS)
if HAVE_DOC
DOCDIR = doc
+else
+DOCDIR =
endif
SUBDIRS = libc libm $(DOCDIR) .
diff --git a/newlib/Makefile.in b/newlib/Makefile.in
index eb35a57..663686f 100644
--- a/newlib/Makefile.in
+++ b/newlib/Makefile.in
@@ -144,8 +144,8 @@ AM_MAKEFLAGS = \
FLAGS_TO_PASS = $(AM_MAKEFLAGS)
-
@HAVE_DOC_TRUE@DOCDIR = @HAVE_DOC_TRUE@doc
+@HAVE_DOC_FALSE@DOCDIR =
SUBDIRS = libc libm $(DOCDIR) .