CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: ott <[EMAIL PROTECTED]> 05/07/20 23:52:01
Modified files:
. : Makefile.am
Log message:
fix #13809, install failure on NetBSD
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/Makefile.am.diff?tr1=1.42&tr2=1.43&r1=text&r2=text
Patches:
Index: wesnoth/Makefile.am
diff -u wesnoth/Makefile.am:1.42 wesnoth/Makefile.am:1.43
--- wesnoth/Makefile.am:1.42 Thu Jun 9 20:02:10 2005
+++ wesnoth/Makefile.am Wed Jul 20 23:52:01 2005
@@ -8,15 +8,15 @@
if LITE
findmoredata=;find images $(findfilterflags) -o -path
"images/campaigns/*/story*" -o -path "images/campaigns/*/sotbe*" -o -print
-findmoredatadirs=find images -type d -not \( -name CVS -prune -o -path
"images/campaigns/*/story*" -o -path "images/campaigns/*/sotbe*" \) -print
+findmoredatadirs=find images -type d \! \( -name CVS -prune -o -path
"images/campaigns/*/story*" -o -path "images/campaigns/*/sotbe*" \) -print
else
findmoredata=;find images music $(findfilterflags) -o -print
-findmoredatadirs=find images music -type d -not \( -name CVS -prune \) -print
+findmoredatadirs=find images music -type d \! \( -name CVS -prune \) -print
endif
finddata=(cd $(top_srcdir) && find data fonts sounds $(findfilterflags) -o
-print \
$(findmoredata) )
-finddatadirs=(cd $(top_srcdir) && find data fonts sounds -type d -not \( -name
CVS -prune \) -print; $(findmoredatadirs) )
+finddatadirs=(cd $(top_srcdir) && find data fonts sounds -type d \! \( -name
CVS -prune \) -print; $(findmoredatadirs) )
findnoinst=(cd $(top_srcdir) && find utils -name CVS -prune -o -name ".cvs*"
-o -name ".\#*" -o -type d -o -print && find MANUAL*)
w_preparefileinstall = if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \