[Scummvm-cvs-logs] scummvm-tools master -> 75a9f632fe7c50b54da900154eeca23fa111720c

digitall dgturner at iee.org
Mon Apr 28 03:49:57 CEST 2014


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-tools' repo located at https://github.com/scummvm/scummvm-tools .

Summary:
75a9f632fe TOOLS: Ensure target directories are created for "make install".


Commit: 75a9f632fe7c50b54da900154eeca23fa111720c
    https://github.com/scummvm/scummvm-tools/commit/75a9f632fe7c50b54da900154eeca23fa111720c
Author: D G Turner (digitall at scummvm.org)
Date: 2014-04-28T02:53:18+01:00

Commit Message:
TOOLS: Ensure target directories are created for "make install".

This patch is from the Solaris porter, Laurent Blume and fixes
this minor problem when packaging for a fakeroot.

Changed paths:
    Makefile.common



diff --git a/Makefile.common b/Makefile.common
index 7955890..81d9f10 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -310,6 +310,8 @@ TARGETS := $(addsuffix $(EXEEXT),$(PROGRAMS))
 all: $(TARGETS)
 
 install: $(TARGETS)
+	$(INSTALL) -p -m 0755 -d $(DESTDIR)$(BINDIR)
+	$(INSTALL) -p -m 0755 -d $(DESTDIR)$(DATADIR)/scummvm-tools
 	for i in $^ ; do $(INSTALL) -p -m 0755 $$i $(DESTDIR)$(BINDIR) ; done
 	$(INSTALL) -m 0755 -d $(DESTDIR)$(DATADIR)/scummvm-tools
 	$(INSTALL) -p -m 0644 $(srcdir)/gui/media/*.* $(DESTDIR)$(DATADIR)/scummvm-tools






More information about the Scummvm-git-logs mailing list