bin/185153: ipfilter Makefile error
Andrew White
andywhite at gmail.com
Tue Dec 24 11:50:01 UTC 2013
>Number: 185153
>Category: bin
>Synopsis: ipfilter Makefile error
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: sw-bug
>Submitter-Id: current-users
>Arrival-Date: Tue Dec 24 11:50:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator: Andrew White
>Release: freebsd 10 rc2
>Organization:
>Environment:
FreeBSD fbuilder 10.0-RC2 FreeBSD 10.0-RC2 #0 r259404: Sun Dec 15 11:45:13 UTC 2013 root at snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386
>Description:
/usr/src/contrib/ipfilter/Makefile doesn't handle double digits in freebsd version
freebsd:
make freebsd`uname -r|cut -c1`
needs to be more portable like
freebsd:
make freebsd`uname -r|cut -d'.' -f1`
>How-To-Repeat:
# make freebsd
make freebsd`uname -r|cut -c1`
make[1]: don't know how to make freebsd1. Stop
make[1]: stopped in /usr/src/contrib/ipfilter
*** Error code 2
Stop.
make: stopped in /usr/src/contrib/ipfilter
>Fix:
update Makefile to get version number up to '.'
freebsd:
make freebsd`uname -r|cut -d'.' -f1`
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-bugs
mailing list