--- elwix/build_base.sh 2014/09/15 19:06:42 1.3 +++ elwix/build_base.sh 2016/11/03 14:13:30 1.3.2.1 @@ -5,7 +5,7 @@ # (C) AITNET ltd - Sofia/Bulgaria # by Michael Pounov # -# $Id: build_base.sh,v 1.3 2014/09/15 19:06:42 misho Exp $ +# $Id: build_base.sh,v 1.3.2.1 2016/11/03 14:13:30 misho Exp $ # [ -r ./config/rc.elwix ] && . ./config/rc.elwix @@ -95,7 +95,6 @@ build_basefs() install -d usr/lib32; install -d usr/libdata; install -d usr/libexec; - install -d usr/libexec/casper ln -fs /usr/libexec libexec; install -d usr/local; install -d usr/local/bin; @@ -144,10 +143,10 @@ install_basefs() find ${WORLD}/libexec -type f -name ld-elf.so\* -exec install {} $LIBEXEC \; - find ${WORLD}/lib -type f -name \*.so.\* -exec install {} $LIBS \; + find ${WORLD}/lib -type f -name \*.so.\* ! -name \*.debug -exec install {} $LIBS \; find ${WORLD}/lib -type f -name libalias_\*.so -exec install {} $LIBS \; find ${WORLD}/lib/geom -type f -name \*.so -exec install {} $LIBS/geom \; - find ${WORLD}/usr/lib -type f -name \*.so.\* -exec install {} $LIBS \; + find ${WORLD}/usr/lib -type f -name \*.so.\* ! -name \*.debug -exec install {} $LIBS \; find ${WORLD}/usr/lib/engines -type f -name \*.so -exec install {} $LIBS/engines \; InstallList ${ELWIX_BASEFS} ${WORLD} ${BASEFS} @@ -158,7 +157,6 @@ install_basefs() InstallDir ${WORLD}/usr/local/sbin $USBIN InstallFiles \*.so\* ${WORLD}/usr/local/lib $LIBS InstallDir ${WORLD}/usr/local/libdata $LIBDATA - InstallDir ${WORLD}/libexec/casper $LIBEXEC/casper chown -R root:wheel $SBIN $BIN $USBIN $UBIN $LIBDATA $LIBEXEC $LIBS }