diff options
author | Roger Leigh <rleigh@debian.org> | 2006-06-23 18:05:10 +0000 |
---|---|---|
committer | Roger Leigh <rleigh@debian.org> | 2006-06-23 18:05:10 +0000 |
commit | 3cd0de7c074eb56f34cd42778301dce6011eb17e (patch) | |
tree | 9e2e0c11defe95db5617189f99d1663875a2b171 /bootstrap | |
parent | 9c2042fc4e906e2b578171ead4225fdf51c2afa0 (diff) | |
download | schroot-3cd0de7c074eb56f34cd42778301dce6011eb17e.tar.gz |
* test/Makefile.am
(TESTS): Remove sbuild-lock, because it can fail randomly on slow
or heavily loaded systems due to timing constraints.
* bootstrap: Create m4 directory if it doesn't exist.
* Makefile.am
(dist-hook): Remove junk from distdir such as temorary files.
(EXTRA_DIST): Distribute bootstrap and m4 macros and templates.
* configure.ac: Add checks for find and xargs.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,4 +1,9 @@ #!/bin/sh +if [ -d m4 ]; then + : +else + mkdir m4 +fi if [ -d scripts ]; then : else |