From 7037b2f0025bc8c259ec7c1aaedc8bf4308ce6b8 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Tue, 6 Sep 2011 15:55:56 +0200 Subject: [PATCH] Userspace program's makefiles now properly delete from initrd/. --- games/Makefile | 2 +- hello/Makefile | 2 +- utils/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/games/Makefile b/games/Makefile index 5dae9cba..e6df444d 100644 --- a/games/Makefile +++ b/games/Makefile @@ -7,7 +7,7 @@ LOCALBINARIES:=\ pong \ conway \ -BINARIES:=$(addprefix $(INITRDDIR)/,$(BINARIES)) +BINARIES:=$(addprefix $(INITRDDIR)/,$(LOCALBINARIES)) all: install diff --git a/hello/Makefile b/hello/Makefile index f72b6053..e97ee186 100644 --- a/hello/Makefile +++ b/hello/Makefile @@ -6,7 +6,7 @@ INITRDDIR:=../initrd LOCALBINARIES:=\ hello \ -BINARIES:=$(addprefix $(INITRDDIR)/,$(BINARIES)) +BINARIES:=$(addprefix $(INITRDDIR)/,$(LOCALBINARIES)) all: install diff --git a/utils/Makefile b/utils/Makefile index b3cd8e3f..724b4997 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -13,7 +13,7 @@ ls \ help \ uname \ -BINARIES:=$(addprefix $(INITRDDIR)/,$(BINARIES)) +BINARIES:=$(addprefix $(INITRDDIR)/,$(LOCALBINARIES)) all: install