diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2008-01-08 21:45:37 +0100 |
---|---|---|
committer | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2008-01-08 21:45:37 +0100 |
commit | 66931411d01121e7edd5430e7826597473f744ee (patch) | |
tree | 6ca0a994f0afaf0240ffae9cfd783791ec9db046 /Makefile.am | |
parent | b2d9426f95dfa5d8e2b3af21f899f3fe8e25187b (diff) | |
download | automake-66931411d01121e7edd5430e7826597473f744ee.tar.gz |
Ensure world-executable tests in the distribution.
* Makefile.am (dist-hook): New, ensure world-executable tests.
* THANKS: Update.
Report by Arto C. Nirkko.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 97504b854..0e787a849 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,7 +3,7 @@ ## Makefile for Automake. ## Copyright (C) 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004, -## 2005, 2006, 2007 Free Software Foundation, Inc. +## 2005, 2006, 2007, 2008 Free Software Foundation, Inc. ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -99,6 +99,10 @@ INSTALL: lib/INSTALL ## to anybody else ## +# Ensure tests are world-executable +dist-hook: + cd $(distdir)/tests && chmod a+rx *.test + # Some simple checks, and then ordinary check. These are only really # guaranteed to work on my machine. maintainer-check: automake aclocal |