From 53f7682c96ef2aa6c03ead1c6154a93ae05c564d Mon Sep 17 00:00:00 2001 From: "axel%pike.org" Date: Wed, 5 Sep 2001 08:48:54 +0000 Subject: [PATCH] bug 94834, without png and mng, DIRS was " ", r=pavlov, sr=jst --- modules/libimg/Makefile.in | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/libimg/Makefile.in b/modules/libimg/Makefile.in index 866b0e1d5aa1..1fc2d51421e2 100644 --- a/modules/libimg/Makefile.in +++ b/modules/libimg/Makefile.in @@ -26,14 +26,12 @@ VPATH = @srcdir@ include $(DEPTH)/config/autoconf.mk -DIRS = $(PNGDIR) $(MNGDIR) - ifndef MOZ_NATIVE_PNG -PNGDIR = png +DIRS = png endif ifndef MOZ_NATIVE_MNG -MNGDIR = mng +DIRS += mng endif include $(topsrcdir)/config/rules.mk