From: Alessio Treglia Date: Fri, 3 Feb 2012 18:45:47 +0000 (+0100) Subject: Properly create all destination directories before filling them. X-Git-Tag: archive/raspbian/1.0.1+dfsg1-4+rpi1~1^2~273 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d1fb5bfb10979c7144dd62689556e3c0095a05ba;p=gpac.git Properly create all destination directories before filling them. --- diff --git a/debian/patches/multiarch.patch b/debian/patches/multiarch.patch index 16dd73c..706abe1 100644 --- a/debian/patches/multiarch.patch +++ b/debian/patches/multiarch.patch @@ -3,8 +3,9 @@ Description: Process configure's --libdir option to set the shared library installation path properly. Forwarded: no --- + Makefile | 1 + configure | 6 ++---- - 1 file changed, 2 insertions(+), 4 deletions(-) + 2 files changed, 3 insertions(+), 4 deletions(-) --- gpac.orig/configure +++ gpac/configure @@ -35,3 +36,13 @@ Forwarded: no ;; "Power Macintosh"|ppc) cpu="powerpc" +--- gpac.orig/Makefile ++++ gpac/Makefile +@@ -55,6 +55,7 @@ tar: + + install: + $(INSTALL) -d "$(DESTDIR)$(prefix)" ++ $(INSTALL) -d "$(DESTDIR)$(prefix)/$(libdir)" + $(INSTALL) -d "$(DESTDIR)$(prefix)/bin" + $(INSTALL) $(INSTFLAGS) -m 755 bin/gcc/MP4Box "$(DESTDIR)$(prefix)/bin" + $(INSTALL) $(INSTFLAGS) -m 755 bin/gcc/MP4Client "$(DESTDIR)$(prefix)/bin"