diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-12-08 11:33:04 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-12-08 11:33:04 +0000 |
commit | 6d7baef562d737697998231b28d7b84bcd4ce7e3 (patch) | |
tree | 8aab3d176cabe252b8c9bd696e6a260ee16a2acc /converters | |
parent | Compaq Alpha Tru64 C compiler. It is a port of the same compiler that is (diff) |
Fix breakage on FreeBSD < 4.2 caused by using `:C/' make(1) modifier.
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=35763
Diffstat (limited to 'converters')
-rw-r--r-- | converters/iconv/files/patch-ai | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/converters/iconv/files/patch-ai b/converters/iconv/files/patch-ai new file mode 100644 index 000000000000..14534137b3d2 --- /dev/null +++ b/converters/iconv/files/patch-ai @@ -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 + |