made extra check for presence of config.sub and config.guess to aviod break of build...
authorMarc Cromme <marc@indexdata.dk>
Mon, 18 Jul 2005 10:05:21 +0000 (10:05 +0000)
committerMarc Cromme <marc@indexdata.dk>
Mon, 18 Jul 2005 10:05:21 +0000 (10:05 +0000)
debian/rules

index 0be463e..072bd0b 100755 (executable)
@@ -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