1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-02 01:20:54 +00:00

Fix libtclstub.a being stripped of symbols and thus being useless.

- We forced -s to INSTALL because we were not using install-strip.
- qa.sh was bugged and improperly reported that the shared library
  was not stripped.  That was fixed in r469589.
This commit is contained in:
Bryan Drewery 2018-05-10 23:05:16 +00:00
parent 9c31cc2ac7
commit 5107e6c319
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=469591
2 changed files with 2 additions and 13 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= tcl PORTNAME= tcl
PORTVERSION= 8.5.19 PORTVERSION= 8.5.19
PORTREVISION= 1 PORTREVISION= 2
CATEGORIES= lang CATEGORIES= lang
MASTER_SITES= TCLTK/tcl8_5 \ MASTER_SITES= TCLTK/tcl8_5 \
SF/tcl/Tcl/${PORTVERSION} SF/tcl/Tcl/${PORTVERSION}
@ -26,7 +26,7 @@ OPTIONS_SUB= yes
WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//:S/rc1//}/unix WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//:S/rc1//}/unix
ALL_TARGET= all ALL_TARGET= all
INSTALL_TARGET= install install-libraries install-tm INSTALL_TARGET= install-strip install-libraries install-tm
TEST_TARGET= do-test TEST_TARGET= do-test
USE_LDCONFIG= yes USE_LDCONFIG= yes

View File

@ -9,17 +9,6 @@
# Path to the private tcl header dir: # Path to the private tcl header dir:
PRIVATE_INCLUDE_DIR = @PRIVATE_INCLUDE_DIR@ PRIVATE_INCLUDE_DIR = @PRIVATE_INCLUDE_DIR@
@@ -152,8 +154,8 @@ INSTALL_STRIP_PROGRAM = -s
INSTALL_STRIP_LIBRARY = -S -x
INSTALL = $(SHELL) $(UNIX_DIR)/install-sh -c
-INSTALL_PROGRAM = ${INSTALL}
-INSTALL_LIBRARY = ${INSTALL}
+INSTALL_PROGRAM = ${INSTALL} -s
+INSTALL_LIBRARY = ${INSTALL} -s
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_DATA_DIR = ${INSTALL} -d -m 755
@@ -546,7 +548,7 @@ SRCS = $(GENERIC_SRCS) $(TOMMATH_SRCS) $ @@ -546,7 +548,7 @@ SRCS = $(GENERIC_SRCS) $(TOMMATH_SRCS) $
all: binaries libraries doc all: binaries libraries doc