openbsd-ports/devel/check/patches/patch-doc_Makefile_in
2008-10-25 16:07:05 +00:00

80 lines
2.5 KiB
Plaintext

$OpenBSD: patch-doc_Makefile_in,v 1.2 2008/10/25 16:07:05 naddy Exp $
--- doc/Makefile.in.orig Wed Nov 22 00:19:14 2006
+++ doc/Makefile.in Sat Oct 25 17:45:11 2008
@@ -220,14 +220,14 @@ EXTRA_DIST = $(example_docs) \
$(example_src_docs) \
$(example_tests_docs)
-docdir = $(datadir)/doc/$(PACKAGE)
+docdir = $(datadir)/doc/check/
# install money example
-exampledir = $(docdir)/example
+exampledir = $(datadir)/examples/check/
example_DATA = $(example_docs)
-examplesrcdir = $(docdir)/example/src
+examplesrcdir = $(exampledir)/src
examplesrc_DATA = $(example_src_docs)
-exampletestsdir = $(docdir)/example/tests
+exampletestsdir = $(exampledir)/tests
exampletests_DATA = $(example_tests_docs)
all: all-am
@@ -621,47 +621,47 @@ check.texi: money.1-2.h.diff \
check_money.6-7.c.diff
money.1-2.h.diff: $(eg_src)/money.1.h $(eg_src)/money.2.h
- cd $(eg_root); \
+ -cd $(eg_root); \
diff -u src/money.1.h src/money.2.h > @abs_builddir@/$@; \
cd -;
money.1-3.c.diff: $(eg_src)/money.1.c $(eg_src)/money.3.c
- cd $(eg_root); \
+ -cd $(eg_root); \
diff -u src/money.1.c src/money.3.c > @abs_builddir@/$@; \
cd -;
money.3-4.c.diff: $(eg_src)/money.3.c $(eg_src)/money.4.c
- cd $(eg_root); \
+ -cd $(eg_root); \
diff -u src/money.3.c src/money.4.c > @abs_builddir@/$@; \
cd -;
money.4-5.c.diff: $(eg_src)/money.4.c $(eg_src)/money.5.c
- cd $(eg_root); \
+ -cd $(eg_root); \
diff -u src/money.4.c src/money.5.c > @abs_builddir@/$@; \
cd -;
money.5-6.c.diff: $(eg_src)/money.5.c $(eg_src)/money.6.c
- cd $(eg_root); \
+ -cd $(eg_root); \
diff -u src/money.5.c src/money.6.c > @abs_builddir@/$@; \
cd -;
check_money.1-2.c.diff: $(eg_tests)/check_money.1.c $(eg_tests)/check_money.2.c
- cd $(eg_root); \
+ -cd $(eg_root); \
diff -u tests/check_money.1.c tests/check_money.2.c > @abs_builddir@/$@; \
cd -;
check_money.2-3.c.diff: $(eg_tests)/check_money.2.c $(eg_tests)/check_money.3.c
- cd $(eg_root); \
+ -cd $(eg_root); \
diff -u tests/check_money.2.c tests/check_money.3.c > @abs_builddir@/$@; \
cd -;
check_money.3-6.c.diff: $(eg_tests)/check_money.3.c $(eg_tests)/check_money.6.c
- cd $(eg_root); \
+ -cd $(eg_root); \
diff -u tests/check_money.3.c tests/check_money.6.c > @abs_builddir@/$@; \
cd -;
check_money.6-7.c.diff: $(eg_tests)/check_money.6.c $(eg_tests)/check_money.7.c
- cd $(eg_root); \
+ -cd $(eg_root); \
diff -u tests/check_money.6.c tests/check_money.7.c > @abs_builddir@/$@; \
cd -;
# Tell versions [3.59,3.63) of GNU make to not export all variables.