Hi there!
I've got an issue while installing mfsBSD. When trying to
That's all because there was no pkg-static in the tools folder. I even tried to put pkg-1.2.6.txz to packages - still nothing, because the condition of existing pkg-static comes first
I also tried both versions, from Git, and from http://mfsbsd.vx.sk/.
Cut from Makefile:
Thanks!
I've got an issue while installing mfsBSD. When trying to
sudo make iso -DPKGNG BASE=/mnt/cd/usr/freebsd-dist/ there was an error:
Code:
Installing pkgng ...pkg-static not found at: tools/pkg-static
make: exec(exit) failed (No such file or directory)
*** Error code 1
Stop.
Cut from Makefile:
Code:
TOOLSDIR=tools
PKG_STATIC?=${TOOLSDIR}/pkg-static
.if defined(PKGNG)
@echo -n "Installing pkgng ..."
. if !exists(${PKG_STATIC})
@echo "pkg-static not found at: ${PKG_STATIC}"
@exit 1
. endif
@mkdir -p ${_DESTDIR}/usr/local/sbin
@${INSTALL} -o root -g wheel -m 0755 ${PKG_STATIC} ${_DESTDIR}/usr/local/sbin/
@${LN} -sf pkg-static ${_DESTDIR}/usr/local/sbin/pkg
@echo " done"
.endif