summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorwl <wl>2011-07-29 20:16:42 +0000
committerwl <wl>2011-07-29 20:16:42 +0000
commit943308afd2770a2f4a30103c85a20a61b15f8f35 (patch)
tree99c54863ad66d2f76d4088e8768278cc4c319f06 /Makefile.in
parent10f2f7c92c0a878763d523dd798c6c4be0f8e3aa (diff)
downloadgroff-943308afd2770a2f4a30103c85a20a61b15f8f35.tar.gz
Fix cross building.
Problem reported by Christophe Jarry <christophe.jarry@ouvaton.org>. * Makefile.in ($GNULIBDIRS): Pass original config arguments to src/libs/gnulib/configure.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index ca7d7e78..09eb5738 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -774,7 +774,8 @@ $(GNULIBDIRS): FORCE
case $(do) in \
all) \
cd $@; \
- test -f Makefile || $(SHELL) $$srcdir/configure ; \
+ args=`$(top_builddir)/config.status --config`; \
+ test -f Makefile || eval $$srcdir/configure "$$args" --srcdir=$$srcdir; \
$(MAKE) ACLOCAL=: AUTOCONF=: AUTOHEADER=: AUTOMAKE=: $(do) ;; \
esac