diff options
author | jlam <jlam> | 2004-08-27 07:29:24 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-08-27 07:29:24 +0000 |
commit | 8444a1734e3b393569d393a87cade98ffa9b59e2 (patch) | |
tree | 1417841d2db422d75e610920ab3b3247a797f217 /net/freeradius/patches | |
parent | 542f79f2570a534453975a45b9655e00f54c7ce3 (diff) | |
download | pkgsrc-8444a1734e3b393569d393a87cade98ffa9b59e2.tar.gz |
libtool uses $(CC) to link objects, not $(LD).
Diffstat (limited to 'net/freeradius/patches')
-rw-r--r-- | net/freeradius/patches/patch-af | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/net/freeradius/patches/patch-af b/net/freeradius/patches/patch-af new file mode 100644 index 00000000000..bae2b17188f --- /dev/null +++ b/net/freeradius/patches/patch-af @@ -0,0 +1,13 @@ +$NetBSD: patch-af,v 1.1 2004/08/27 07:29:24 jlam Exp $ + +--- src/lib/Makefile.orig Tue Jun 24 10:22:19 2003 ++++ src/lib/Makefile Fri Aug 27 03:27:01 2004 +@@ -33,7 +33,7 @@ + + + $(TARGET).a: $(STATIC_OBJS) +- $(LIBTOOL) --mode=link $(LD) \ ++ $(LIBTOOL) --mode=link $(CC) \ + -module -static $(CFLAGS) $^ -o $@ + + |