From 762d9ef1fc884dfc0ee1923a22cbadb3c5a3b053 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Tue, 10 Mar 2015 01:11:20 +0100 Subject: [PATCH] Fix packer/Makefile dependencies --- packer/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packer/Makefile b/packer/Makefile index 42785b0..88ca578 100644 --- a/packer/Makefile +++ b/packer/Makefile @@ -1,5 +1,9 @@ -compile: +compile: fake-uname.so + +fake-uname.so: gcc -shared -fPIC -ldl fake-uname.c -o fake-uname.so -packer: +packer: fake-uname.so packer build debian64_wheezy.json + +.PHONY: compile packer -- 2.1.4