summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-02-28 15:23:52 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2012-07-23 13:07:41 +0100
commitc54a358116732ebd0aef46c1b1e6eb947c27e3fa (patch)
treef2bb109ee59e04d5f2a2f446ffa6cae61667770b
parent87831a75ec41d826448353a82173e084647cf9a9 (diff)
downloadautomake-c54a358116732ebd0aef46c1b1e6eb947c27e3fa.tar.gz
automake.morph: override to not set DESTDIR
automake runs distcheck using DESTDIR, however if it is overridden on the command line it overrides it for all sub-make invokations. So it runs its distcheck in our DESTDIR. It then does not clean up after itself, so we get automake.build/... in the chunk. The defaulting of overriding DESTDIR is because it has no ill effects on most projects, and it fails to work if not specified on some others
-rw-r--r--automake.morph5
1 files changed, 4 insertions, 1 deletions
diff --git a/automake.morph b/automake.morph
index d01fc8cdd..c8de7b152 100644
--- a/automake.morph
+++ b/automake.morph
@@ -1,5 +1,8 @@
{
"name": "automake",
"kind": "chunk",
- "build-system": "autotools"
+ "build-system": "autotools",
+ "install-commands": [
+ "make install"
+ ]
}