From 2099ccac6e6400fa5447d6830f08a9bdf36eaa83 Mon Sep 17 00:00:00 2001 From: "cls%seawood.org" Date: Tue, 2 May 2000 06:58:12 +0000 Subject: [PATCH] prepend $(srcdir) to $(RESOURCES) to make nsinstall happy. git-svn-id: svn://10.0.0.236/trunk@67888 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/tools/leaky/Makefile.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mozilla/tools/leaky/Makefile.in b/mozilla/tools/leaky/Makefile.in index 1c4d67c60ed..e83a78a42f0 100644 --- a/mozilla/tools/leaky/Makefile.in +++ b/mozilla/tools/leaky/Makefile.in @@ -50,6 +50,8 @@ RESOURCES = \ close-over.gif \ $(NULL) +RESOURCES := $(addprefix $(srcdir)/, $(RESOURCES)) + # Stuff to build the library used to wrap malloc LIBMALLOC_CPPSRCS = libmalloc.cpp LIBMALLOC_OBJECTS = $(LIBMALLOC_CPPSRCS:.cpp=.o)