[Scummvm-cvs-logs] scummvm master -> 05d97f33ecc9b2375bd5b7410458510c598da7a2

digitall dgturner at iee.org
Tue Nov 13 20:56:32 CET 2012


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

Summary:
05d97f33ec BUILD: Remove stripping of executables on "make install".


Commit: 05d97f33ecc9b2375bd5b7410458510c598da7a2
    https://github.com/scummvm/scummvm/commit/05d97f33ecc9b2375bd5b7410458510c598da7a2
Author: D G Turner (digitall at scummvm.org)
Date: 2012-11-13T11:52:52-08:00

Commit Message:
BUILD: Remove stripping of executables on "make install".

This is now standard behaviour, and the current situation creates
problems for distribution packagers trying to generate debug packages.

A standard "install-strip" target has been added to enable the previous
behaviour if needed.

Changed paths:
    ports.mk



diff --git a/ports.mk b/ports.mk
index 4d7d6f6..eff0ea6 100644
--- a/ports.mk
+++ b/ports.mk
@@ -2,12 +2,27 @@
 # included by the default (main) Makefile.
 #
 
-
 #
 # POSIX specific
 #
 install:
 	$(INSTALL) -d "$(DESTDIR)$(bindir)"
+	$(INSTALL) -c -m 755 "./$(EXECUTABLE)" "$(DESTDIR)$(bindir)/$(EXECUTABLE)"
+	$(INSTALL) -d "$(DESTDIR)$(mandir)/man6/"
+	$(INSTALL) -c -m 644 "$(srcdir)/dists/scummvm.6" "$(DESTDIR)$(mandir)/man6/scummvm.6"
+	$(INSTALL) -d "$(DESTDIR)$(datarootdir)/pixmaps/"
+	$(INSTALL) -c -m 644 "$(srcdir)/icons/scummvm.xpm" "$(DESTDIR)$(datarootdir)/pixmaps/scummvm.xpm"
+	$(INSTALL) -d "$(DESTDIR)$(docdir)"
+	$(INSTALL) -c -m 644 $(DIST_FILES_DOCS) "$(DESTDIR)$(docdir)"
+	$(INSTALL) -d "$(DESTDIR)$(datadir)"
+	$(INSTALL) -c -m 644 $(DIST_FILES_THEMES) $(DIST_FILES_ENGINEDATA) "$(DESTDIR)$(datadir)/"
+ifdef DYNAMIC_MODULES
+	$(INSTALL) -d "$(DESTDIR)$(libdir)/scummvm/"
+	$(INSTALL) -c -m 644 $(PLUGINS) "$(DESTDIR)$(libdir)/scummvm/"
+endif
+
+install-strip:
+	$(INSTALL) -d "$(DESTDIR)$(bindir)"
 	$(INSTALL) -c -s -m 755 "./$(EXECUTABLE)" "$(DESTDIR)$(bindir)/$(EXECUTABLE)"
 	$(INSTALL) -d "$(DESTDIR)$(mandir)/man6/"
 	$(INSTALL) -c -m 644 "$(srcdir)/dists/scummvm.6" "$(DESTDIR)$(mandir)/man6/scummvm.6"






More information about the Scummvm-git-logs mailing list