diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2010-01-26 15:51:45 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2010-01-26 15:51:45 +0100 |
commit | 51f9f4d78deabf54dbbb6881139d2b1a319ffbfc (patch) | |
tree | 60a2bcd8911acd5c4ab8b4558bfd30344b673ff5 /buildlib/configure.mak | |
parent | 76fe5db7153957f8fda437e3bd614312b076f19e (diff) | |
parent | c1f168f54be5b4babeb9b91cd7145441ea2489ad (diff) |
merge from the mvo branch
Diffstat (limited to 'buildlib/configure.mak')
-rw-r--r-- | buildlib/configure.mak | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/buildlib/configure.mak b/buildlib/configure.mak index 957568789..310c2600c 100644 --- a/buildlib/configure.mak +++ b/buildlib/configure.mak @@ -15,7 +15,13 @@ BUILDDIR=build .PHONY: startup startup: configure $(BUILDDIR)/config.status $(addprefix $(BUILDDIR)/,$(CONVERTED)) -configure: aclocal.m4 configure.in +# use the files provided from the system instead of carry around +# and use (most of the time outdated) copycats +buildlib/config.sub: + ln -sf /usr/share/misc/config.sub buildlib/config.sub +buildlib/config.guess: + ln -sf /usr/share/misc/config.guess buildlib/config.guess +configure: aclocal.m4 configure.in buildlib/config.guess buildlib/config.sub autoconf aclocal.m4: $(wildcard buildlib/*.m4) |