6a8e651ea1
since this shows up problems on NFS-mounted pkgsrc archives on Darwin. On Darwin, don't try to make the po message files, since msgfmt doesn't yet exist. These changes allow bootstrapping the gtar-base package on Darwin.
21 lines
583 B
Text
21 lines
583 B
Text
$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
|