diff options
author | sbd <sbd@pkgsrc.org> | 2012-01-26 22:58:45 +0000 |
---|---|---|
committer | sbd <sbd@pkgsrc.org> | 2012-01-26 22:58:45 +0000 |
commit | 05ddb5decd7da966e32f9e0d3354151babc3bcfb (patch) | |
tree | ae9e76fbc20a8b6afe4e2e8311b820fe0f18ba3d /meta-pkgs | |
parent | 8933f6111d40069a20b08d23bb78599151eb0cb8 (diff) | |
download | pkgsrc-05ddb5decd7da966e32f9e0d3354151babc3bcfb.tar.gz |
In the section of configure that decides whether a libdir suffix should be
used, force it to be an empty (i.e no suffix).
Diffstat (limited to 'meta-pkgs')
-rw-r--r-- | meta-pkgs/gnuradio/distinfo | 3 | ||||
-rw-r--r-- | meta-pkgs/gnuradio/patches/patch-config_gr__lib64.m4 | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/meta-pkgs/gnuradio/distinfo b/meta-pkgs/gnuradio/distinfo index de22e073b4e..379cb8d874e 100644 --- a/meta-pkgs/gnuradio/distinfo +++ b/meta-pkgs/gnuradio/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2012/01/12 15:47:45 hans Exp $ +$NetBSD: distinfo,v 1.6 2012/01/26 22:58:45 sbd Exp $ SHA1 (gnuradio-3.3.0.tar.gz) = 41d5c177b173ce73404f5fe539b013c82600f73f RMD160 (gnuradio-3.3.0.tar.gz) = ae83bd8a93deaf73d730e2af0d05c9ffc4c98520 @@ -12,4 +12,5 @@ SHA1 (patch-ah) = 713fd140b8143b468b8ac2422f825a1ee24d4419 SHA1 (patch-ai) = 2e8291c4d8a117c9c69de0ee906fbff85485d797 SHA1 (patch-aj) = 046fb46567fcbef58143ac3eeb2d0f1fd905618e SHA1 (patch-ak) = c6d2d9289600a89cd425d1bab671b080888d9c04 +SHA1 (patch-config_gr__lib64.m4) = 2263778dea1b8918033c175735f3134a6da80dc5 SHA1 (patch-gnuradio-core_src_lib_general_gr__math.cc) = 81161e9576c3ec8259a20663eb991578f0ac40c3 diff --git a/meta-pkgs/gnuradio/patches/patch-config_gr__lib64.m4 b/meta-pkgs/gnuradio/patches/patch-config_gr__lib64.m4 new file mode 100644 index 00000000000..43b16421362 --- /dev/null +++ b/meta-pkgs/gnuradio/patches/patch-config_gr__lib64.m4 @@ -0,0 +1,14 @@ +$NetBSD: patch-config_gr__lib64.m4,v 1.1 2012/01/26 22:58:46 sbd Exp $ + +Don't use a libdir suffix (eg. lib64) + +--- config/gr_lib64.m4.orig 2010-06-01 05:04:08.000000000 +0000 ++++ config/gr_lib64.m4 +@@ -58,6 +58,7 @@ AC_DEFUN([GR_LIB64],[ + else + _GR_LIB64_ASK_COMPILER + fi ++ gr_libdir_suffix="" + AC_MSG_RESULT([$gr_libdir_suffix]) + + |