diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2005-12-12 19:27:25 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2005-12-12 19:27:25 +0000 |
commit | 2ced9a06bfacf9ebb56c1b2762e05b53c9199c2a (patch) | |
tree | 06d77bc6ca7ef9e84c157f1861edf4017500a846 /mail/moztraybiff/files/patch-make-install.rdf | |
parent | Chase libggi update. (diff) |
Update to 1.2.
In theory, this version can be told to build against Thunderbird 1.5,
but I'm not going to tweak this port to do so until Tb 1.5 is released.
Diffstat (limited to '')
-rw-r--r-- | mail/moztraybiff/files/patch-make-install.rdf | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mail/moztraybiff/files/patch-make-install.rdf b/mail/moztraybiff/files/patch-make-install.rdf new file mode 100644 index 000000000000..6cf5fd26fd25 --- /dev/null +++ b/mail/moztraybiff/files/patch-make-install.rdf @@ -0,0 +1,14 @@ +--- make-install.rdf.orig Mon Dec 12 14:23:05 2005 ++++ make-install.rdf Mon Dec 12 14:23:39 2005 +@@ -1,9 +1,9 @@ + #!/usr/bin/perl + +-my $machine = `gcc -dumpmachine`; ++my $machine = `uname`; + chomp $machine; + +-$machine =~ /^(.*?)\-/ ++$machine =~ /^(.*?)$/ + or die "Unable to parse machine name"; + my $arch = $1; + |