Gentoo Archives: gentoo-devhelp

From: Nikos Chantziaras <realnc@×××××.de>
To: gentoo-devhelp@l.g.o
Subject: [gentoo-devhelp] qmake and stripped executables
Date: Thu, 14 May 2009 02:02:34
Message-Id: gufu2l$eqj$1@ger.gmane.org
1 qmake (from Qt 3) creates makefiles that strip all executables during
2 installation. The generated rule looks like this:
3
4 install_target: all
5 @$(CHK_DIR_EXISTS) "$(INSTALL_ROOT)/lib64/" || $(MKDIR)
6 "$(INSTALL_ROOT)/lib64/"
7 -$(INSTALL_FILE) "$(QMAKE_TARGET)"
8 "$(INSTALL_ROOT)/lib64/$(QMAKE_TARGET)"
9 -strip "$(INSTALL_ROOT)/lib64/$(QMAKE_TARGET)"
10
11 This results in portage issuing a QA warning during the emerge (portage
12 wants to strip the executables itself). What would be a good way to fix
13 that?

Replies

Subject Author
Re: [gentoo-devhelp] qmake and stripped executables Mike Frysinger <vapier@g.o>