From c7d628f73cf46582695ce00849f41bdd94517925 Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Tue, 28 Feb 2012 16:38:34 +0000 Subject: 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 --- automake.morph | 4 ++-- 1 file 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" ] } -- cgit v1.2.1