diff options
author | Nicolas Roche <roche@adacore.com> | 2009-05-24 12:39:17 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2009-05-24 12:39:17 +0000 |
commit | 2e6a3c8daff4e38d7b2fabbf46dbcf1740a59c06 (patch) | |
tree | e0bb245c220a4653e98a1a6ffc983a62d80483a4 | |
parent | 782dc37a1eeb6866bce8095548908231b8e9db4e (diff) | |
download | gcc-2e6a3c8daff4e38d7b2fabbf46dbcf1740a59c06.zip gcc-2e6a3c8daff4e38d7b2fabbf46dbcf1740a59c06.tar.gz gcc-2e6a3c8daff4e38d7b2fabbf46dbcf1740a59c06.tar.bz2 |
Makefile.tpl (compare-target): Skip ./ada/*tools directories.
* Makefile.tpl (compare-target): Skip ./ada/*tools directories.
* Makefile.in: Regenerate.
From-SVN: r147834
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.in | 4 | ||||
-rw-r--r-- | Makefile.tpl | 2 |
3 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2009-05-24 Nicolas Roche <roche@adacore.com> + + * Makefile.tpl (compare-target): Skip ./ada/*tools directories. + * Makefile.in: Regenerate. + 2009-05-21 Denis Chertykov <chertykov@gmail.com> * MAINTAINERS: Update my e-mail address. diff --git a/Makefile.in b/Makefile.in index 23b3688..65835c5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -52218,7 +52218,7 @@ compare: $(do-compare) > /dev/null 2>&1; \ if test $$? -eq 1; then \ case $$file in \ - ./cc*-checksum$(objext) | ./libgcc/* ) \ + ./cc*-checksum$(objext) | ./libgcc/* | ./ada/*tools/* ) \ echo warning: $$file differs ;; \ *) \ echo $$file differs >> .bad_compare ;; \ @@ -52543,7 +52543,7 @@ compare3: $(do-compare3) > /dev/null 2>&1; \ if test $$? -eq 1; then \ case $$file in \ - ./cc*-checksum$(objext) | ./libgcc/* ) \ + ./cc*-checksum$(objext) | ./libgcc/* | ./ada/*tools/* ) \ echo warning: $$file differs ;; \ *) \ echo $$file differs >> .bad_compare ;; \ diff --git a/Makefile.tpl b/Makefile.tpl index ff058d6..ecc903e 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -1434,7 +1434,7 @@ do-clean: clean-stage[+id+] $(do-[+compare-target+]) > /dev/null 2>&1; \ if test $$? -eq 1; then \ case $$file in \ - ./cc*-checksum$(objext) | ./libgcc/* ) \ + ./cc*-checksum$(objext) | ./libgcc/* | ./ada/*tools/* ) \ echo warning: $$file differs ;; \ *) \ echo $$file differs >> .bad_compare ;; \ |