diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2014-02-20 09:33:20 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2014-02-20 09:33:20 +0000 |
commit | 87294f0f157fee457a8219c3d0b007be454e90e4 (patch) | |
tree | 94aaa331076fcc610eda4799be3a7e23d667236b | |
parent | ec50876fbd344dde64f55a1efda62b88208c187f (diff) | |
download | freebsd-ports-87294f0f157fee457a8219c3d0b007be454e90e4.zip |
- Fix pkg-message: fetch arguments come before urls
-rw-r--r-- | net-mgmt/arpwatch/files/pkg-message.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-mgmt/arpwatch/files/pkg-message.in b/net-mgmt/arpwatch/files/pkg-message.in index e8d578fd5477..893962b88366 100644 --- a/net-mgmt/arpwatch/files/pkg-message.in +++ b/net-mgmt/arpwatch/files/pkg-message.in @@ -3,7 +3,7 @@ You can update the ethercodes.dat file executing the following steps cd %%PREFIX%%/arpwatch -fetch http://standards.ieee.org/regauth/oui/oui.txt -o- | cut -b 3- > oui.txt +fetch -o- http://standards.ieee.org/regauth/oui/oui.txt | cut -b 3- > oui.txt ./massagevendor oui.txt > ethercodes.dat rm oui.txt |