diff options
author | Remi Cardona <remi@gentoo.org> | 2008-05-05 13:41:59 +0000 |
---|---|---|
committer | Remi Cardona <remi@gentoo.org> | 2008-05-05 13:41:59 +0000 |
commit | 7315fa3dcd7ef61175230ed63308d5d6eff71cf5 (patch) | |
tree | dab80702b8beed0760b9b433ec65a947303f7119 /net-misc/whois/files | |
parent | Add ~amd64 keyword (diff) | |
download | historical-7315fa3dcd7ef61175230ed63308d5d6eff71cf5.tar.gz historical-7315fa3dcd7ef61175230ed63308d5d6eff71cf5.tar.bz2 historical-7315fa3dcd7ef61175230ed63308d5d6eff71cf5.zip |
net-misc/whois: Add patch to fix --as-needed (see bug #220351)
Package-Manager: portage-2.1.5_rc6
Diffstat (limited to 'net-misc/whois/files')
-rw-r--r-- | net-misc/whois/files/whois-4.7.26-fix-as-needed.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/net-misc/whois/files/whois-4.7.26-fix-as-needed.patch b/net-misc/whois/files/whois-4.7.26-fix-as-needed.patch new file mode 100644 index 000000000000..46e190749baf --- /dev/null +++ b/net-misc/whois/files/whois-4.7.26-fix-as-needed.patch @@ -0,0 +1,15 @@ +--- Makefile 2008-05-05 14:32:24.000000000 +0200 ++++ Makefile 2008-05-05 14:33:24.000000000 +0200 +@@ -33,10 +33,10 @@ + $(CC) $(CFLAGS) $(OPTS) -c $< + + whois: whois.o utils.o +- $(CC) $(LDFLAGS) $(whois_LDADD) -o $@ $^ ++ $(CC) $(LDFLAGS) -o $@ $^ $(whois_LDADD) + + mkpasswd: mkpasswd.o utils.o +- $(CC) $(LDFLAGS) $(mkpasswd_LDADD) -o $@ $^ ++ $(CC) $(LDFLAGS) -o $@ $^ $(mkpasswd_LDADD) + + ############################################################################## + as_del.h: as_del_list make_as_del.pl |