mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Use the full path to /sbin/sysctl
Noticed by: 'make index' in crontab
This commit is contained in:
parent
346b9e5224
commit
d604e1d6d3
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=74251
12 changed files with 12 additions and 12 deletions
|
@ -125,7 +125,7 @@ pre-build:
|
|||
${ECHO_MSG} "This is known to cause problems during bootstrapping."; \
|
||||
exit 1; \
|
||||
fi
|
||||
@if [ `sysctl -n compat.linux.osname` != "Linux" ]; \
|
||||
@if [ `/sbin/sysctl -n compat.linux.osname` != "Linux" ]; \
|
||||
then \
|
||||
${ECHO_MSG} "Please set the value of the sysctl compat.linux.osname"; \
|
||||
${ECHO_MSG} "to 'Linux' with the command:"; \
|
||||
|
|
|
@ -160,7 +160,7 @@ pre-build:
|
|||
${ECHO_MSG} "This is known to cause problems during bootstrapping."; \
|
||||
exit 1; \
|
||||
fi
|
||||
@if [ `sysctl -n compat.linux.osname` != "Linux" ]; \
|
||||
@if [ `/sbin/sysctl -n compat.linux.osname` != "Linux" ]; \
|
||||
then \
|
||||
${ECHO_MSG} "Please set the value of the sysctl compat.linux.osname"; \
|
||||
${ECHO_MSG} "to 'Linux' with the command:"; \
|
||||
|
|
|
@ -160,7 +160,7 @@ pre-build:
|
|||
${ECHO_MSG} "This is known to cause problems during bootstrapping."; \
|
||||
exit 1; \
|
||||
fi
|
||||
@if [ `sysctl -n compat.linux.osname` != "Linux" ]; \
|
||||
@if [ `/sbin/sysctl -n compat.linux.osname` != "Linux" ]; \
|
||||
then \
|
||||
${ECHO_MSG} "Please set the value of the sysctl compat.linux.osname"; \
|
||||
${ECHO_MSG} "to 'Linux' with the command:"; \
|
||||
|
|
|
@ -160,7 +160,7 @@ pre-build:
|
|||
${ECHO_MSG} "This is known to cause problems during bootstrapping."; \
|
||||
exit 1; \
|
||||
fi
|
||||
@if [ `sysctl -n compat.linux.osname` != "Linux" ]; \
|
||||
@if [ `/sbin/sysctl -n compat.linux.osname` != "Linux" ]; \
|
||||
then \
|
||||
${ECHO_MSG} "Please set the value of the sysctl compat.linux.osname"; \
|
||||
${ECHO_MSG} "to 'Linux' with the command:"; \
|
||||
|
|
|
@ -160,7 +160,7 @@ pre-build:
|
|||
${ECHO_MSG} "This is known to cause problems during bootstrapping."; \
|
||||
exit 1; \
|
||||
fi
|
||||
@if [ `sysctl -n compat.linux.osname` != "Linux" ]; \
|
||||
@if [ `/sbin/sysctl -n compat.linux.osname` != "Linux" ]; \
|
||||
then \
|
||||
${ECHO_MSG} "Please set the value of the sysctl compat.linux.osname"; \
|
||||
${ECHO_MSG} "to 'Linux' with the command:"; \
|
||||
|
|
|
@ -52,7 +52,7 @@ pre-configure:
|
|||
@# configure.in by patching it.
|
||||
@touch ${WRKSRC}/gcc/configure
|
||||
@touch ${WRKSRC}/gcc/cstamp-h.in
|
||||
@(MAJ=`sysctl -n kern.osreldate | ${SED} -e '/.....$$/s///'` ; \
|
||||
@(MAJ=`/sbin/sysctl -n kern.osreldate | ${SED} -e '/.....$$/s///'` ; \
|
||||
${SED} -e "s:__FreeBSD__:__FreeBSD__=$${MAJ}:" ${FILESDIR}/freebsd.h \
|
||||
>${WRKSRC}/gcc/config/freebsd.h )
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ pre-patch:
|
|||
@${MV} ${WRKSRC}/config/i386/freebsd.h ${WRKSRC}/config/i386/freebsd-aout.h
|
||||
|
||||
pre-configure:
|
||||
@(MAJ=`sysctl -n kern.osreldate | ${SED} -e '/.....$$/s///'` ; \
|
||||
@(MAJ=`/sbin/sysctl -n kern.osreldate | ${SED} -e '/.....$$/s///'` ; \
|
||||
${SED} -e "s:__FreeBSD__[0-9=]*:__FreeBSD__=$${MAJ}:" ${FILESDIR}/freebsd.h.${ARCH} \
|
||||
>${WRKSRC}/config/${ARCH}/freebsd.h )
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ pre-configure:
|
|||
@${TOUCH} ${TOUCH_FLAGS} ${WRKSRC}/configure
|
||||
@${TOUCH} ${TOUCH_FLAGS} ${WRKSRC}/cstamp-h.in
|
||||
@(cd ${WRKSRC}/config/${ARCH}/ ; \
|
||||
MAJ=`sysctl -n kern.osreldate | ${SED} -e '/.....$$/s///'` ; \
|
||||
MAJ=`/sbin/sysctl -n kern.osreldate | ${SED} -e '/.....$$/s///'` ; \
|
||||
${MV} freebsd-aout.h freebsd-aout.h.in ; \
|
||||
${SED} -e "s:__FreeBSD__=[0-9]*:__FreeBSD__=$${MAJ}:" \
|
||||
freebsd-aout.h.in >freebsd-aout.h ; \
|
||||
|
|
|
@ -58,7 +58,7 @@ pre-patch:
|
|||
@${MV} ${WRKSRC}/gcc/config/i386/freebsd-elf.h ${WRKSRC}/gcc/config/i386/freebsd.h
|
||||
|
||||
pre-configure:
|
||||
@(MAJ=`sysctl -n kern.osreldate | ${SED} -e '/.....$$/s///'` ; \
|
||||
@(MAJ=`/sbin/sysctl -n kern.osreldate | ${SED} -e '/.....$$/s///'` ; \
|
||||
${SED} -e "s:__FreeBSD__[0-9=]*:__FreeBSD__=$${MAJ}:" ${FILESDIR}/freebsd.h \
|
||||
>${WRKSRC}/gcc/config/freebsd.h )
|
||||
@${CP} ${FILESDIR}/alpha-freebsd.h ${WRKSRC}/gcc/config/alpha/freebsd.h
|
||||
|
|
|
@ -162,7 +162,7 @@ post-patch:
|
|||
|
||||
pre-configure:
|
||||
@(cd ${WRKSRC}/config/${ARCH}/ ; \
|
||||
MAJ=`sysctl -n kern.osreldate | ${SED} -e '/.....$$/s///'` ; \
|
||||
MAJ=`/sbin/sysctl -n kern.osreldate | ${SED} -e '/.....$$/s///'` ; \
|
||||
${MV} freebsd.h freebsd.h.in ; \
|
||||
${SED} -e "s:__FreeBSD__=[0-9]*:__FreeBSD__=$${MAJ}:" freebsd.h.in \
|
||||
>freebsd.h)
|
||||
|
|
|
@ -30,7 +30,7 @@ post-patch:
|
|||
|
||||
pre-configure:
|
||||
@ ${CP} ${FILESDIR}/conf-freebsd2.h ${WRKSRC}/configs
|
||||
@ ${SED} s%/kernel%`sysctl -bn kern.bootfile`% \
|
||||
@ ${SED} s%/kernel%`/sbin/sysctl -bn kern.bootfile`% \
|
||||
< ${TWCONFIG} \
|
||||
> ${WRKSRC}/configs/tw.conf.freebsd2
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ BUILD_DEPENDS= bdftopcf:${PORTSDIR}/x11/XFree86-4-clients \
|
|||
CYR_RFX_ENCODING?= koi8-o
|
||||
|
||||
WRKSRC= ${WRKDIR}/${CYR_RFX_ENCODING}
|
||||
NCPUS!= sysctl -n hw.ncpu 2> /dev/null || echo 1
|
||||
NCPUS!= /sbin/sysctl -n hw.ncpu 2> /dev/null || echo 1
|
||||
MAKE_ARGS+= -j ${NCPUS}
|
||||
MAKEFILE= ${FILESDIR}/Makefile.bdf2pcf
|
||||
INST_DIR= "lib/X11/fonts/${PORTNAME}"
|
||||
|
|
Loading…
Add table
Reference in a new issue