47542eb173
Summary of changes (see NEWS and Changelog from the distribution for details): - don't allow absolute paths, and path containing ../ * New option --overwrite-dir * New option --recursion (the default) that is the inverse of --no-recursion. * New options --anchored, --ignore-case, --wildcards, --wildcards-match-slash, and their negations (e.g., --no-anchored). Along with --recursion and --no-recursion, these options control how exclude patterns are interpreted. * The default interpretation of exclude patterns is now --no-anchored --no-ignore-case --recursion --wildcards --wildcards-match-slash. * The --no-recursion option now affects extraction too. * New options --no-same-owner, --no-same-permissions. * New option -y or --bzip2 for bzip2 compression, by popular request.
21 lines
620 B
Text
21 lines
620 B
Text
$NetBSD: patch-ae,v 1.4 2002/11/20 16:57:55 bouyer Exp $
|
|
|
|
--- Makefile.in.orig Wed Sep 26 22:35:05 2001
|
|
+++ Makefile.in Sun Nov 17 18:32:32 2002
|
|
@@ -102,10 +102,15 @@
|
|
rmt_LDADD = @rmt_LDADD@
|
|
tar_LDADD = @tar_LDADD@
|
|
|
|
+OPSYS!= uname -s
|
|
AUTOMAKE_OPTIONS = gnits dist-bzip2 dist-shar
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
EXTRA_DIST = ChangeLog.1 PORTS
|
|
-SUBDIRS = doc intl lib m4 src scripts po tests
|
|
+.if ${OPSYS} == "Darwin"
|
|
+SUBDIRS = intl lib m4 src scripts tests
|
|
+.else
|
|
+SUBDIRS = intl lib m4 src scripts po tests
|
|
+.endif
|
|
subdir = .
|
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|