From: Marc Cromme Date: Mon, 18 Jul 2005 10:05:21 +0000 (+0000) Subject: made extra check for presence of config.sub and config.guess to aviod break of build... X-Git-Tag: before.bug.529~376 X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=commitdiff_plain;h=32da497331f7655667ead364172fefbb6ac723d3 made extra check for presence of config.sub and config.guess to aviod break of build if newer autotools did install these as symlinks --- diff --git a/debian/rules b/debian/rules index 0be463e..072bd0b 100755 --- a/debian/rules +++ b/debian/rules @@ -45,10 +45,10 @@ clean: # Add here commands to clean up after the build process. -$(MAKE) distclean ifneq "$(wildcard /usr/share/misc/config.sub)" "" - cp -f /usr/share/misc/config.sub config.sub + if [! -f config.sub] ; then cp -f /usr/share/misc/config.sub config.sub ; fi endif ifneq "$(wildcard /usr/share/misc/config.guess)" "" - cp -f /usr/share/misc/config.guess config.guess + if [! -f config.guess] ; then cp -f /usr/share/misc/config.guess config.guess ; fi endif