summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-02-28 16:38:34 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2012-07-23 13:07:53 +0100
commitc7d628f73cf46582695ce00849f41bdd94517925 (patch)
tree8bc1d314a9bec2c484389f032967075b3860351e
parentc54a358116732ebd0aef46c1b1e6eb947c27e3fa (diff)
downloadautomake-c7d628f73cf46582695ce00849f41bdd94517925.tar.gz
automake.morph: DESTDIR has an affect in build
automake runs distcheck in make all, not make install This means make is picking up DESTDIR from the environment This means the variable needs to be unset
-rw-r--r--automake.morph4
1 files changed, 2 insertions, 2 deletions
diff --git a/automake.morph b/automake.morph
index c8de7b152..893f8760a 100644
--- a/automake.morph
+++ b/automake.morph
@@ -2,7 +2,7 @@
"name": "automake",
"kind": "chunk",
"build-system": "autotools",
- "install-commands": [
- "make install"
+ "build-commands": [
+ "unset DESTDIR; make"
]
}