diff options
author | joerg <joerg> | 2010-01-01 18:38:08 +0000 |
---|---|---|
committer | joerg <joerg> | 2010-01-01 18:38:08 +0000 |
commit | 925a47b791f17eb0416d241b98b8daac31d79141 (patch) | |
tree | f7711237a0366f22224c775a2ff8dcad5e1fea28 | |
parent | ab1147a50411d9939f43de1b90e8f1b65cfe2ac5 (diff) | |
download | pkgsrc-925a47b791f17eb0416d241b98b8daac31d79141.tar.gz |
The path after -Wl,-rpath as an argument for the linker, so it needs
either to be prefixed with -Wl, or just be part of the former argument.
Do the latter.
-rw-r--r-- | meta-pkgs/ruby-gnome2/distinfo | 3 | ||||
-rw-r--r-- | meta-pkgs/ruby-gnome2/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/meta-pkgs/ruby-gnome2/distinfo b/meta-pkgs/ruby-gnome2/distinfo index 177aff550be..b7cded92ef0 100644 --- a/meta-pkgs/ruby-gnome2/distinfo +++ b/meta-pkgs/ruby-gnome2/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.12 2009/12/23 03:05:18 obache Exp $ +$NetBSD: distinfo,v 1.13 2010/01/01 18:38:08 joerg Exp $ SHA1 (ruby-gnome2-all-0.19.3.tar.gz) = f6ab4c1699c4920c738343870b13ba5410a5ecbf RMD160 (ruby-gnome2-all-0.19.3.tar.gz) = a7ec4b9b7c17f2e23a5a51a7ed9c8df5a6c3ea7f Size (ruby-gnome2-all-0.19.3.tar.gz) = 2335847 bytes +SHA1 (patch-aa) = 4b246a11069ba0a058673febcb9eb490c23f3898 diff --git a/meta-pkgs/ruby-gnome2/patches/patch-aa b/meta-pkgs/ruby-gnome2/patches/patch-aa new file mode 100644 index 00000000000..0d433dbd824 --- /dev/null +++ b/meta-pkgs/ruby-gnome2/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.6 2010/01/01 18:38:08 joerg Exp $ + +--- gtkmozembed/extconf.rb.orig 2010-01-01 18:25:07.000000000 +0000 ++++ gtkmozembed/extconf.rb +@@ -48,7 +48,7 @@ mozilla_path = mozilla_library_path.stri + if mozilla_path + # please comment the CFLAGS line if you don't want a default comp_path + $CFLAGS << " -DDEFAULT_MOZILLA_FIVE_HOME='\"#{mozilla_path}\"' " +- $LDFLAGS << " -Wl,-rpath #{mozilla_path}" ++ $LDFLAGS << " -Wl,-rpath,#{mozilla_path}" + else + $stderr.puts "${package_id}.pc cannot be found." + exit 1 |