]> git.wh0rd.org - patches.git/blob - redland-bindings-mkdir.patch
scummvm random work
[patches.git] / redland-bindings-mkdir.patch
1 Index: csharp/Makefile.am
2 ===================================================================
3 --- csharp/Makefile.am (revision 11290)
4 +++ csharp/Makefile.am (working copy)
5 @@ -86,7 +86,8 @@ test.exe: test.cs Redland.dll
6 $(CSHARP_LINK) test.cs -target:exe -r:Redland.dll -out:$@
7
8 install-csharp: build-csharp-stamp
9 - $(INSTALL_PROGRAM) $(CSHARP_DLL) @libdir@
10 + $(mkinstalldirs) $(DESTDIR)$(libdir)
11 + $(INSTALL_PROGRAM) $(CSHARP_DLL) $(libdir)
12
13 clean-local:
14 rm -f build-csharp-stamp $(CSHARP_DLL)
15 Index: tcl/Makefile.am
16 ===================================================================
17 --- tcl/Makefile.am (revision 11290)
18 +++ tcl/Makefile.am (working copy)
19 @@ -70,6 +70,7 @@ $(TCL_PACKAGE)-stamp: $(TCL_PACKAGE)_wra
20 touch $(TCL_PACKAGE)-stamp
21
22 install-tclDATA: $(tcl_DATA)
23 + $(mkinstalldirs) $(DESTDIR)$(tcldir)
24 if test -r $(TCL_PACKAGE).dylib; then \
25 $(INSTALL_PROGRAM) $(TCL_PACKAGE).dylib $(DESTDIR)$(tcldir)/$(TCL_PACKAGE).dylib; \
26 else \