blob: cfa2d83fae4f6a613a05b25f0b6602cdf11d9b5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
$NetBSD: patch-ae,v 1.3 2001/12/27 21:50:57 agc Exp $
--- Makefile.in.orig Fri Apr 25 20:21:57 1997
+++ Makefile.in Thu Dec 27 16:28:31 2001
@@ -102,9 +102,15 @@
AUTOMAKE_OPTIONS = gnits dist-shar
+OPSYS!= uname -s
+
BABYL = rmail/* admin/*/RMAIL
EXTRA_DIST = AC-PATCHES AM-PATCHES BI-PATCHES PORTS rebox.el
-SUBDIRS = doc lib intl src scripts po tests
+.if ${OPSYS} == "Darwin"
+SUBDIRS = lib intl src scripts tests
+.else
+SUBDIRS = lib intl src scripts po tests
+.endif
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
CONFIG_HEADER_IN = config.h.in
CONFIG_HEADER_FULL = config.h
|