so for these patches relaesed today the makefile entries would look something like?:
... PATCH_COMMON=001_perl 002_fd ...
001_perl: cd ${WRKSRC}/gnu/usr.bin/perl && \ (${_obj_wrp}; ${_depend}; ${_build_wrp})
002_fd: _kernel && \ cd ${WRKSRC}/usr.sbin/authpf && \ (${_obj}; ${_build})
This won't work.
And the _kernel macro will execute after the authpf stuff if you were to use: 002_fd: _kernel cd ${WORKSRC}...
I used this:
_authpf: .USE cd ${WRKSRC}/usr.sbin/authpf && \ (${_obj}; ${_build})
001_perl: cd ${WRKSRC}/gnu/usr.bin/perl && \ (${_obj_wrp}; ${_depend_wrp}; ${_build_wrp})
002_fd: _kernel _authpf
Hope that helps. -ME http://erdelynet.com/
Log in to post a comment.
so for these patches relaesed today the makefile entries would look something like?:
...
PATCH_COMMON=001_perl 002_fd
...
001_perl:
cd ${WRKSRC}/gnu/usr.bin/perl && \
(${_obj_wrp}; ${_depend}; ${_build_wrp})
002_fd:
_kernel && \
cd ${WRKSRC}/usr.sbin/authpf && \
(${_obj}; ${_build})
This won't work.
And the _kernel macro will execute after the authpf stuff if you were to use:
002_fd: _kernel
cd ${WORKSRC}...
I used this:
_authpf: .USE
cd ${WRKSRC}/usr.sbin/authpf && \
(${_obj}; ${_build})
001_perl:
cd ${WRKSRC}/gnu/usr.bin/perl && \
(${_obj_wrp}; ${_depend_wrp}; ${_build_wrp})
002_fd: _kernel _authpf
Hope that helps.
-ME
http://erdelynet.com/