From ef6d7f2cd9807328c6efa8df15a5a04eb451d8b5 Mon Sep 17 00:00:00 2001 From: "dbragg%netscape.com" Date: Fri, 9 Mar 2001 01:58:10 +0000 Subject: [PATCH] Fix for non-Linux and Solaris build bustage. r=sgehani --- modules/libreg/Makefile.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/libreg/Makefile.in b/modules/libreg/Makefile.in index 9a278a6b814..fcc0da54660 100644 --- a/modules/libreg/Makefile.in +++ b/modules/libreg/Makefile.in @@ -26,7 +26,11 @@ VPATH = @srcdir@ include $(DEPTH)/config/autoconf.mk -DIRS = include src standalone +DIRS = include src + +ifneq (,$(filter Linux SunOS,$(OS_ARCH))) +DIRS += standalone +endif include $(topsrcdir)/config/rules.mk