1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

Fix breakage on FreeBSD < 4.2 caused by using `:C/' make(1) modifier.

Submitted by:	maintainer
This commit is contained in:
Maxim Sobolev 2000-12-08 11:33:04 +00:00
parent 662c4d7168
commit 6d7baef562
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=35763

View File

@ -0,0 +1,13 @@
--- lib/Makefile.orig Mon Nov 27 23:33:49 2000
+++ lib/Makefile Thu Dec 7 15:23:52 2000
@@ -10,8 +10,8 @@
BUILTIN_CES_STATIC != cd ${.CURDIR}/../ces && make libces_static.a \
>/dev/null && ${AR} t libces_static.a
-OBJS = ${BUILTIN_CCS:C|.|../ccs/&|} ${BUILTIN_CES:C|.|../ces/&|}
-STATICOBJS = ${BUILTIN_CES_STATIC:C|.|../ces/&|}
+OBJS = ${BUILTIN_CCS:S|^|../ccs/&|} ${BUILTIN_CES:S|^|../ces/&|}
+STATICOBJS = ${BUILTIN_CES_STATIC:S|^|../ces/&|}
LIBDIR = ${PREFIX}/lib