summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwl <wl>2010-12-20 09:37:59 +0000
committerwl <wl>2010-12-20 09:37:59 +0000
commit887dda6d764c36155b0ea4e30d9509b40d39442e (patch)
tree1f8af40027e978f128300d6889aca2ea7ed7f2ba
parentb706a783c204610a8d7fe9b024644fc45d20a4df (diff)
downloadgroff-887dda6d764c36155b0ea4e30d9509b40d39442e.tar.gz
A new try to not changing srcdir if building in separate builddir.
Makefile.in ($GNULIBDIRS): Disable calls to autoconf and friends.
-rw-r--r--ChangeLog6
-rw-r--r--Makefile.in10
2 files changed, 8 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 16ad11ef..094af92e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-12-20 Daiki Ueno <ueno@unixuser.org>
+
+ A new try to not changing srcdir if building in separate builddir.
+
+ Makefile.in ($GNULIBDIRS): Disable calls to autoconf and friends.
+
2010-12-20 Werner LEMBERG <wl@gnu.org>
Speed up access to cflags values.
diff --git a/Makefile.in b/Makefile.in
index e27c0c91..d068a30e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -767,14 +767,8 @@ $(GNULIBDIRS): FORCE
case $(do) in \
all) \
cd $@; \
- if test ! $(srcdir) = .; then \
- for file in aclocal.m4 Makefile.in configure build-aux; do \
- rm -rf $$file && cp -R $$srcdir/$$file .; \
- done; \
- touch aclocal.m4 Makefile.in configure; \
- fi; \
- test -f Makefile || $(SHELL) $$srcdir/configure; \
- $(MAKE) $(do) ;; \
+ test -f Makefile || $(SHELL) $$srcdir/configure ; \
+ $(MAKE) ACLOCAL=: AUTOCONF=: AUTOHEADER=: AUTOMAKE=: $(do) ;; \
esac
$(OTHERDIRS): $(PROGDEPDIRS) $(CCPROGDIRS) $(CPROGDIRS)