diff options
author | trevor <trevor@FreeBSD.org> | 2004-02-12 21:21:10 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2004-02-12 21:21:10 +0000 |
commit | 4f0c75b3c629bec96190f7c96c16b94676975272 (patch) | |
tree | 6dfb9dc154143b85189121618c70fdd1bda534ff /www/firefox3-devel | |
parent | 5f54d4e2c4e157711b54e1a8377228d1d7fcd799 (diff) | |
download | FreeBSD-ports-4f0c75b3c629bec96190f7c96c16b94676975272.zip FreeBSD-ports-4f0c75b3c629bec96190f7c96c16b94676975272.tar.gz |
Fix the window ID in firefox.rb (new PORTREVISION).
PR: 62735
Submitted by: obraun
Diffstat (limited to 'www/firefox3-devel')
-rw-r--r-- | www/firefox3-devel/Makefile | 2 | ||||
-rw-r--r-- | www/firefox3-devel/files/firefox.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/www/firefox3-devel/Makefile b/www/firefox3-devel/Makefile index 0723147..cd389ba 100644 --- a/www/firefox3-devel/Makefile +++ b/www/firefox3-devel/Makefile @@ -7,7 +7,7 @@ PORTNAME= firefox PORTVERSION= 0.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${PORTVERSION} diff --git a/www/firefox3-devel/files/firefox.rb b/www/firefox3-devel/files/firefox.rb index 1c970f9..082607a 100644 --- a/www/firefox3-devel/files/firefox.rb +++ b/www/firefox3-devel/files/firefox.rb @@ -71,7 +71,7 @@ IO::popen("xwininfo -display #{$display} -root -tree") { if NAME != "firefox" $windows = io.grep(%r<"Mozilla"\s+"navigator:\s*browser">) else - $windows = io.grep(%r<MozillaFirefox-bin.*>) + $windows = io.grep(%r<Firefox-bin.*>) end } |