1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

- Don't strip the library, rendering it unuable

PR:		ports/73543
Submitted by:	Olivier Beyssac <ob-ports@r14.freenix.org>
This commit is contained in:
Pav Lucistnik 2004-11-04 22:12:20 +00:00
parent e9cbc7332b
commit 8dbb308e81
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=120818
2 changed files with 8 additions and 5 deletions

View File

@ -6,6 +6,7 @@
PORTNAME= avltree
PORTVERSION= 1.1
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= # disappeared in 2001

View File

@ -1,6 +1,6 @@
--- Makefile.orig Thu Jan 13 13:04:47 2000
+++ Makefile Sun Oct 19 01:44:36 2003
@@ -3,7 +3,8 @@
--- Makefile.orig Thu Jan 13 22:04:47 2000
+++ Makefile Thu Nov 4 22:36:55 2004
@@ -3,16 +3,17 @@
# Date created: 13 January 2000
# Whom: Bill Ross <bross@nas.nasa.gov> <ross@cgl.ucsf.edu>
#
@ -10,8 +10,10 @@
all: libavltree.a
@@ -12,7 +13,7 @@
strip libavltree.a
libavltree.a: avltree.o
$(AR) r libavltree.a avltree.o
- strip libavltree.a
+ ranlib libavltree.a
avltree.o: avltree.c avltree.h
- $(CC) -c avltree.c