You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(202) |
Nov
(201) |
Dec
(280) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(493) |
Feb
(106) |
Mar
(215) |
Apr
(163) |
May
(79) |
Jun
(193) |
Jul
(47) |
Aug
(71) |
Sep
(127) |
Oct
(41) |
Nov
(49) |
Dec
(120) |
2005 |
Jan
(147) |
Feb
(45) |
Mar
(26) |
Apr
(71) |
May
(52) |
Jun
(28) |
Jul
(92) |
Aug
(50) |
Sep
(35) |
Oct
(193) |
Nov
(106) |
Dec
(52) |
2006 |
Jan
(51) |
Feb
(38) |
Mar
(33) |
Apr
(79) |
May
(107) |
Jun
(67) |
Jul
(21) |
Aug
(65) |
Sep
(44) |
Oct
(87) |
Nov
(12) |
Dec
(56) |
2007 |
Jan
(48) |
Feb
(58) |
Mar
(63) |
Apr
(31) |
May
(25) |
Jun
(20) |
Jul
(72) |
Aug
(54) |
Sep
(30) |
Oct
(76) |
Nov
(74) |
Dec
(25) |
2008 |
Jan
(39) |
Feb
(39) |
Mar
(62) |
Apr
(64) |
May
(59) |
Jun
(31) |
Jul
(25) |
Aug
(25) |
Sep
(17) |
Oct
(24) |
Nov
|
Dec
(1) |
2009 |
Jan
(60) |
Feb
(39) |
Mar
(16) |
Apr
(30) |
May
(52) |
Jun
(35) |
Jul
(15) |
Aug
(15) |
Sep
(21) |
Oct
(32) |
Nov
(39) |
Dec
(52) |
2010 |
Jan
(42) |
Feb
(40) |
Mar
(23) |
Apr
(20) |
May
(27) |
Jun
(10) |
Jul
(30) |
Aug
(30) |
Sep
(66) |
Oct
(12) |
Nov
(35) |
Dec
(60) |
2011 |
Jan
(16) |
Feb
(1) |
Mar
(3) |
Apr
(28) |
May
(21) |
Jun
|
Jul
(12) |
Aug
(6) |
Sep
(10) |
Oct
(14) |
Nov
(40) |
Dec
(60) |
2012 |
Jan
(23) |
Feb
(17) |
Mar
(24) |
Apr
(18) |
May
(13) |
Jun
(1) |
Jul
|
Aug
(5) |
Sep
|
Oct
(5) |
Nov
(5) |
Dec
(15) |
2013 |
Jan
(2) |
Feb
(5) |
Mar
(1) |
Apr
(2) |
May
(2) |
Jun
(3) |
Jul
|
Aug
(3) |
Sep
(5) |
Oct
(3) |
Nov
(1) |
Dec
(1) |
2014 |
Jan
(3) |
Feb
(5) |
Mar
(8) |
Apr
(3) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
|
Sep
(4) |
Oct
(10) |
Nov
|
Dec
(9) |
2015 |
Jan
(18) |
Feb
(17) |
Mar
(5) |
Apr
(2) |
May
|
Jun
(5) |
Jul
(1) |
Aug
(2) |
Sep
(1) |
Oct
(24) |
Nov
(20) |
Dec
(41) |
2016 |
Jan
(9) |
Feb
(3) |
Mar
(2) |
Apr
(7) |
May
(8) |
Jun
(1) |
Jul
(6) |
Aug
(5) |
Sep
(2) |
Oct
(6) |
Nov
(1) |
Dec
(6) |
2017 |
Jan
(6) |
Feb
(1) |
Mar
|
Apr
(4) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Heiko Z. <smi...@us...> - 2011-12-21 01:03:36
|
Update of /cvsroot/devil-linux/build/config/etc/initrd In directory vz-cvs-3.sog:/tmp/cvs-serv3302/config/etc/initrd Modified Files: mount_cdrom Log Message: - resolved bug #105 - mount_cdrom: incomplete version match of the boot and - the found cd image Index: mount_cdrom =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/initrd/mount_cdrom,v retrieving revision 1.54 retrieving revision 1.55 diff -u -d -r1.54 -r1.55 --- mount_cdrom 26 Nov 2010 13:31:15 -0000 1.54 +++ mount_cdrom 21 Dec 2011 01:03:33 -0000 1.55 @@ -378,9 +378,13 @@ echo -n " checking $disk ... " umount ${FILEMOUNT} 2> /dev/null if /sbin/mount -n -t auto -o rw,noatime $disk ${FILEMOUNT} 2> /dev/null; then + MYVER=$(cat VERSION) if [ -e ${FILEMOUNT}/DEVIL-LINUX ] ; then + MEDIAVER=$(cat ${FILEMOUNT}/DEVIL-LINUX) + fi + if [ -e ${FILEMOUNT}/DEVIL-LINUX ] && [ "${MYVER}" == "${MEDIAVER}" ] ; then $GREEN - echo "media found" + echo -e "Found Devil-Linux v${MEDIAVER}" $NORMAL if [[ "$(ls ${FILEMOUNT}/bootcd.*.new 2>/dev/null)" != "" ]]; then @@ -481,11 +485,10 @@ $NORMAL sleep 10 exit 1 - fi - # run from ram if correct variable is set - if ! run_from_ram --file; then + # run from ram if correct variable is set + if ! run_from_ram --file; then # since this could be flash disk, lets make read-only. # Should not write to this mount anymore anyway. It # is attempted to umount it in pre_init but will fail @@ -503,9 +506,15 @@ exit 0 fi else - $YELLOW - echo "wrong media" - $NORMAL + if [ -e ${FILEMOUNT}/DEVIL-LINUX ] ; then + $RED + echo "Wrong version (${MEDIAVER})" + $NORMAL + else + $YELLOW + echo "wrong media" + $NORMAL + fi /sbin/umount ${FILEMOUNT} fi else |
From: Heiko Z. <smi...@us...> - 2011-12-21 01:03:35
|
Update of /cvsroot/devil-linux/build In directory vz-cvs-3.sog:/tmp/cvs-serv3302 Modified Files: CHANGES Log Message: - resolved bug #105 - mount_cdrom: incomplete version match of the boot and - the found cd image Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1483 retrieving revision 1.1484 diff -u -d -r1.1483 -r1.1484 --- CHANGES 18 Dec 2011 17:46:34 -0000 1.1483 +++ CHANGES 21 Dec 2011 01:03:32 -0000 1.1484 @@ -23,6 +23,7 @@ 1.6.0-RC1 WIP - resolved bug #118 - install-on-usb fails to install grub (64 bit versions) +- resolved bug #105 - mount_cdrom: incomplete version match of the boot and the found cd image - time(zone) is not set before the file systems are mounted - upgrade-config did not execute insserv to correct the init script order - fixed bug #111 - Postgres don't start with 1.4.2 and above |
From: Heiko Z. <smi...@us...> - 2011-12-18 21:27:26
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv21683 Modified Files: install-on-usb Log Message: partial support for the new grub 1.99 Index: install-on-usb =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/install-on-usb,v retrieving revision 1.36 retrieving revision 1.37 diff -u -d -r1.36 -r1.37 --- install-on-usb 6 Dec 2011 09:13:03 -0000 1.36 +++ install-on-usb 18 Dec 2011 21:27:24 -0000 1.37 @@ -123,28 +123,26 @@ install_grub () { echo "Configuring Grub boot sector and menu..." - if [ -f "/DEVIL-LINUX" ]; then # we are in DL - grub_shell=$TMPDIR/iso-mnt/sbin/grub - else - grub_shell=$(which grub) + GRUBVERSION=0 + grub_shell=$(which grub 2> /dev/null) + if [ -n "$grub_shell" ]; then + GRUBVERSION=1 if $grub_shell --version | grep "GNU GRUB 0.9" > /dev/null 2>&1 ; then echo "Using $grub_shell binary..." else echo "Probably unsupported Grub version. If the installation breaks, load DL as Live-CD and repeat installation" fi fi + + if [ -n "$(grub-install -v | grep "1.9")" ]; then + GRUBVERSION=2 + fi + device_map=grub-tmp-map force_lba="" if [ "$INITRD_TYPE" != "INITRAMFS" ]; then KERNEL_OPTIONS="root=/dev/ram0 init=/linuxrc $RAMDISK" fi - - if [ ! -f "$grub_shell" ]; then - echo "Grub not found in ISO image - was it included in the DL build?" - umount $TMPDIR/iso-mnt #|| exit 1 - umount $TMPDIR/disk-mnt #|| exit 1 - exit 1 - fi rm -f $device_map @@ -224,19 +222,30 @@ ln -s grub.conf menu.lst popd > /dev/null - $grub_shell --batch --device-map=$device_map <<-EOF > /dev/null - quit - EOF + case "$GRUBVERSION" in + "1" ) + $grub_shell --batch --device-map=$device_map <<-EOF > /dev/null + quit + EOF - install_drive=$(grep "$1\$" $device_map|cut -f1) - root_drive="${install_drive%%)},0)" + install_drive=$(grep "$1\$" $device_map|cut -f1) + root_drive="${install_drive%%)},0)" - $grub_shell --batch --device-map=$device_map <<-EOF > /dev/null - root $root_drive - setup $force_lba $install_drive - quit - EOF - rm -f $device_map + $grub_shell --batch --device-map=$device_map <<-EOF > /dev/null + root $root_drive + setup $force_lba $install_drive + quit + EOF + rm -f $device_map + ;; + "2" ) + set -x + grub-install --boot-directory=$TMPDIR/disk-mnt/boot $1 + ;; + * ) + echo "No clue which GRUB version you're using, aborting" + ;; + esac } install_dl () |
From: Heiko Z. <smi...@us...> - 2011-12-18 21:22:52
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv21541/scripts Modified Files: finalize functions grub Log Message: grub is finally operational removed textrel and other checks Index: functions =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/functions,v retrieving revision 1.79 retrieving revision 1.80 diff -u -d -r1.79 -r1.80 --- functions 5 Dec 2011 09:20:27 -0000 1.79 +++ functions 18 Dec 2011 21:22:49 -0000 1.80 @@ -535,8 +535,6 @@ echo "ERROR couldn't find file $!" exit 1 fi - - set -x if [ ! -f ${FLAGDIR} ]; then for PATCH in $(cat $1 2>/dev/null) Index: finalize =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/finalize,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- finalize 10 Dec 2011 20:30:58 -0000 1.15 +++ finalize 18 Dec 2011 21:22:49 -0000 1.16 @@ -35,34 +35,6 @@ ln -sf lib $CDDIR/usr/lib64 || exit 1 fi - TEXT_REL=$(scanelf -qtyR $CDDIR) - if [ -n "$TEXT_REL" ]; then - echo "************ WARNING ************" - echo "The following files contain text relocations, please try to get those files to PIC" - echo "$TEXT_REL" - fi - - # now let's search for libraries which have the executable stack flag set - # and error out if we find any (only if PAX or GRSecurity are on) - GNU_EXEC_STACK=$(scanelf $CDDIR -eRq | grep -v /boot/grub/kernel.img | grep -v /usr/lib/grub/i386-pc/kernel.img) - if [ -n "$GNU_EXEC_STACK" ]; then - if [ "$CONFIG_GRSECURITY" = "y" ] || [ "$CONFIG_PAX" == "y" ]; then - echo "************ ERROR ************" - else - echo "************ WARNING ************" - fi - echo "The following files have the GNU_EXEC_STACK turned on:" - echo "$GNU_EXEC_STACK" - echo "fix this by adding either:" - echo "-Wa,--noexecstack to CC" - echo "or" - echo "-Wl,-z,noexecstack to LD" - echo "worst case just disable it with scanelf" - echo "see http://www.gentoo.org/proj/en/hardened/pax-utils.xml for details" - if [ "$CONFIG_GRSECURITY" = "y" ] || [ "$CONFIG_PAX" == "y" ]; then - exit 1 - fi - fi ;; * ) Index: grub =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/grub,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- grub 9 Dec 2011 12:59:49 -0000 1.25 +++ grub 18 Dec 2011 21:22:49 -0000 1.26 @@ -20,19 +20,19 @@ build ) patch_from_dir ../grub-patches - if [ "$CONFIG_GCC_HARDENED" = "y" ]; then - export CC="gcc -fno-stack-protector -fno-pic -fno-pie -nopie -Wa,--noexecstack" - fi unset CFLAGS unset CXXFLAGS + export CC="gcc -specs=${WORKDIR}/gcc-specs-default" ./configure --prefix=/usr --sbindir=/sbin --sysconfdir=/etc --disable-nls || exit 1 - make $PMAKE LDFLAGS="-Wl,-z,noexecstack" || exit 1 + make $PMAKE || exit 1 ;; install ) rm -rf $TMPDIR || exit 1 mkdir -p $TMPDIR || exit 1 make install DESTDIR=$TMPDIR || exit 1 + paxctl -pemrxs $TMPDIR/sbin/* + paxctl -pemrxs $TMPDIR/usr/bin/* copy_docs $TMPDIR cp -dpvR $TMPDIR/etc/* $ETCDIR/etc/ || exit 1 rm -rf $TMPDIR/etc |
From: Heiko Z. <smi...@us...> - 2011-12-18 19:36:21
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv11494 Modified Files: upgrade-config Log Message: use correct path Index: upgrade-config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/upgrade-config,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -r1.45 -r1.46 --- upgrade-config 17 Dec 2011 23:52:46 -0000 1.45 +++ upgrade-config 18 Dec 2011 19:36:18 -0000 1.46 @@ -318,12 +318,12 @@ fi # make sure the init system is configured correctly -#rm -rf $CMPDIR/etc/init.d/rc{S,0,1,2,3,4,5,6}.d -#rm -rf $CMPDIR/etc/init.d/boot.d -#mkdir -p $CMPDIR/etc/init.d/rc{S,0,1,2,3,4,5,6}.d -#mkdir -p $CMPDIR/etc/init.d/boot.d +#rm -rf /etc/init.d/rc{S,0,1,2,3,4,5,6}.d +#rm -rf /etc/init.d/boot.d +#mkdir -p /etc/init.d/rc{S,0,1,2,3,4,5,6}.d +#mkdir -p /etc/init.d/boot.d # -insserv -f -d $(grep -l "### BEGIN INIT INFO" $CMPDIR/etc/init.d/* | grep -v "skeleton") +insserv -f -d $(grep -l "### BEGIN INIT INFO" /etc/init.d/* | grep -v "skeleton") # make sure we use the correct system initialization sed -e s%"si::sysinit:/etc/init.d/boot"%"si::sysinit:/etc/init.d/rc boot"% /etc/inittab > /etc/inittab.new |
From: Heiko Z. <smi...@us...> - 2011-12-18 17:46:37
|
Update of /cvsroot/devil-linux/build/config/etc/init.d In directory vz-cvs-3.sog:/tmp/cvs-serv25937/config/etc/init.d Modified Files: checkfs setclock Log Message: - time(zone) is not set before the file systems are mounted - upgrade-config did not execute insserv to correct the init script order Index: setclock =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/init.d/setclock,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- setclock 5 Mar 2004 01:55:21 -0000 1.5 +++ setclock 18 Dec 2011 17:46:35 -0000 1.6 @@ -13,7 +13,7 @@ ### BEGIN INIT INFO # Provides: setclock -# Required-Start: localnet +# Required-Start: boot boot.local # Required-Stop: # Default-Start: B # Default-Stop: Index: checkfs =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/init.d/checkfs,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- checkfs 1 Nov 2005 15:13:45 -0000 1.7 +++ checkfs 18 Dec 2011 17:46:34 -0000 1.8 @@ -3,7 +3,7 @@ ### BEGIN INIT INFO # Provides: checkfs -# Required-Start: boot boot.local +# Required-Start: boot boot.local setclock # Required-Stop: # Default-Start: B # Default-Stop: |
From: Heiko Z. <smi...@us...> - 2011-12-17 23:52:48
|
Update of /cvsroot/devil-linux/build/config/etc/init.d In directory vz-cvs-3.sog:/tmp/cvs-serv1305/config/etc/init.d Modified Files: beep Log Message: - upgrade-config did not execute insserv to correct the init script order - fixed bug #111 - Postgres don't start with 1.4.2 and above - rpcbind now starts before nfsd init script - updated nfs-utils 1.2.5 Index: beep =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/init.d/beep,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- beep 2 Oct 2010 19:37:00 -0000 1.5 +++ beep 17 Dec 2011 23:52:46 -0000 1.6 @@ -9,7 +9,7 @@ ### BEGIN INIT INFO # Provides: beep -# Required-Start: $last +# Required-Start: $last grsecurity # Required-Stop: # Default-Start: # Default-Stop: |
From: Heiko Z. <smi...@us...> - 2011-12-17 19:36:41
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv3893/scripts Added Files: fail2ban Log Message: added fail2ban init script --- NEW FILE: fail2ban --- #!/bin/bash # # $Source: /cvsroot/devil-linux/build/scripts/scripts/fail2ban,v $ # $Revision: 1.1 $ # $Date: 2011/12/17 19:36:39 $ # # http://www.devil-linux.org # ### BEGIN INIT INFO # Provides: fail2ban # Required-Start: $network $syslog $named postfix # Required-Stop: $network $syslog $named # Default-Start: # Default-Stop: # Description: starts fail2ban ### END INIT INFO # settings source /etc/sysconfig/config # parameters NAME="fail2ban" CONFIGNAME=FAIL2BAN DAEMON=/usr/bin/fail2ban-client PARAMETER= # source function library source /etc/init.d/functions eval START=\$START_$CONFIGNAME # Determine the base and follow a runlevel link name. base=${0##*/} link=${base#*[SK][0-9][0-9]} # Force execution if not called by a runlevel directory. test $link = $base && START=yes test "$START" = "yes" || exit 0 if [ ! -e $DAEMON ]; then echo echo "$DAEMON not found. Did you install the package?" exit 1 fi case "$1" in start) echo -n "Starting $NAME: " $DAEMON start > /dev/null evaluate_retval ;; stop) echo -n "Shutting down $NAME: " $DAEMON stop > /dev/null evaluate_retval ;; restart) $0 stop sleep 1 $0 start ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 ;; esac |
From: Heiko Z. <smi...@us...> - 2011-12-17 18:09:00
|
Update of /cvsroot/devil-linux/build In directory vz-cvs-3.sog:/tmp/cvs-serv31772 Modified Files: CHANGES Log Message: removed the script /etc/vmware-tools/scripts/vmware/network (doesn't work on DL and was causing issues with VM shutdowns) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1480 retrieving revision 1.1481 diff -u -d -r1.1480 -r1.1481 --- CHANGES 14 Dec 2011 14:28:49 -0000 1.1480 +++ CHANGES 17 Dec 2011 18:08:57 -0000 1.1481 @@ -23,6 +23,7 @@ 1.6.0-RC1 WIP - resolved bug #118 - install-on-usb fails to install grub (64 bit versions) +- removed the script /etc/vmware-tools/scripts/vmware/network (doesn't work on DL and was causing issues with VM shutdowns) - open-vm-tools init script now uses the default path for the plugins - clamav doesn't update the virus signatures on start anymore, if freshclam is enabled - freshclam now starts before clamav |
From: Heiko Z. <smi...@us...> - 2011-12-16 15:40:40
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv7440/scripts Modified Files: open-vm-tools Log Message: correct vmware init script to not throw rpc errors correct build script to allow build of "stable" open-vm-tools Index: open-vm-tools =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/open-vm-tools,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- open-vm-tools 14 Dec 2011 14:28:49 -0000 1.14 +++ open-vm-tools 16 Dec 2011 15:40:38 -0000 1.15 @@ -27,7 +27,7 @@ install ) if [ "$CONFIG_OPEN_VM_TOOLS" = "y" ]; then mkdir -p $TMPDIR || exit 1 - make install DESTDIR=$TMPDIR || exit 1 + make install DESTDIR=$TMPDIR DEPMOD="depmod -a ${KERNELVERSION}" || exit 1 cp -dpvR $TMPDIR/etc/* $ETCDIR/etc/ || exit 1 rm -rf $TMPDIR/etc || exit 1 rm -rf $TMPDIR/sbin || exit 1 |
From: Heiko Z. <smi...@us...> - 2011-12-16 13:41:20
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv24391 Modified Files: Python cd_cleanup Log Message: only copy pyconfig.h to ISO remove pkconfig directory, we only need that during the build Index: Python =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/Python,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- Python 5 Dec 2011 09:11:37 -0000 1.31 +++ Python 16 Dec 2011 13:41:17 -0000 1.32 @@ -19,8 +19,6 @@ case $1 in build ) if [ "$CONFIG_PYTHON" = "y" ]; then - rm -rf $WORKDIR/Python-install - mkdir -p $WORKDIR/Python-install/usr CC="gcc -fPIC" ./configure --prefix=/usr --host=$CONF_HOST --with-threads \ --enable-ipv6 --with-signal-module --enable-shared --enable-unicode || exit 1 make $PMAKE all || exit 1 @@ -40,14 +38,15 @@ make install DESTDIR=$TMPDIR || exit 1 ln -sf python2.7 $TMPDIR/usr/bin/python || exit 1 - ln -sf python2.7 $TMPDIR/usr/bin/python2 || exit 1 copy_docs $TMPDIR find $TMPDIR/usr/ -name *.pyc | xargs rm find $TMPDIR/usr/ -name *.pyo | xargs rm + rm -rf $TMPDIR/usr/include/python*/* copy_files $TMPDIR/usr $CDDIR/ || exit 1 + cp -dpvf pyconfig.h $CDDIR/usr/include/python*/ || exit 1 rm -rf $TMPDIR # otherwise sagator won't work with the new clamav Index: cd_cleanup =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cd_cleanup,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- cd_cleanup 15 Dec 2011 01:08:44 -0000 1.19 +++ cd_cleanup 16 Dec 2011 13:41:17 -0000 1.20 @@ -23,6 +23,8 @@ find $INITRDDIR -type f -exec strip --strip-debug '{}' ';' find $CDDIR/{lib,usr/lib,usr/libexec} | xargs -n 1 strip --strip-debug find $CDDIR/{bin,sbin,usr/bin,usr/sbin,usr/libexec} -type f ! -name '*.so' | xargs -n 1 strip --strip-all + + rm -rf $CDDIR/usr/lib/pkgconfig if [ "$CONFIG_DEVIL_DOC_ISO" != "y" ]; then rm -rf $ISODIR/cdtree/doc || exit 1 |
From: Heiko Z. <smi...@us...> - 2011-12-15 14:32:32
|
Update of /cvsroot/devil-linux/build/scripts/configuration/profiles In directory vz-cvs-3.sog:/tmp/cvs-serv24237 Modified Files: server Log Message: Use lower standard resolution Index: server =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/server,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- server 10 Dec 2011 20:58:16 -0000 1.41 +++ server 15 Dec 2011 14:32:29 -0000 1.42 @@ -9,7 +9,7 @@ CONFIG_BACULA=y CONFIG_BLUEZ=y CONFIG_BONNIEPP=y -CONFIG_BOOT_OPTION_VGA=1024x768 +CONFIG_BOOT_OPTION_VGA=80x25 CONFIG_BRIDGE_UTILS=y CONFIG_CDRTOOLS_ON_CD=y CONFIG_CLAMAV=y |
From: Heiko Z. <smi...@us...> - 2011-12-15 01:08:47
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv28115 Modified Files: cd_cleanup Log Message: works better this way.... Index: cd_cleanup =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cd_cleanup,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- cd_cleanup 14 Dec 2011 14:28:49 -0000 1.18 +++ cd_cleanup 15 Dec 2011 01:08:44 -0000 1.19 @@ -16,7 +16,7 @@ case $1 in install ) - find $CDDIR/usr/include/ -maxdepth 1 | grep -v "^python" | xargs -n 1 rm -rf + ls -1 $CDDIR/usr/include/* | grep -v "^python" | xargs -n 1 rm -rf find $CDDIR -type f -name '*.la' | grep -v Magick | xargs -n 1 rm -f find $CDDIR -type f -name '*.a' | xargs -n 1 rm -f find $CDDIR -type f -exec strip --strip-debug '{}' ';' |
From: Heiko Z. <smi...@us...> - 2011-12-14 14:31:03
|
Update of /cvsroot/devil-linux/build In directory vz-cvs-3.sog:/tmp/cvs-serv19726 Modified Files: md5sum.lst Log Message: - open-vm-tools init script now uses the default path for the plugins - clamav doesn't update the virus signatures on start anymore, if freshclam - is enabled - freshclam now starts before clamav - updated open-vm-tools to 2011.11.20-535097 Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.646 retrieving revision 1.647 diff -u -d -r1.646 -r1.647 --- md5sum.lst 13 Dec 2011 19:54:10 -0000 1.646 +++ md5sum.lst 14 Dec 2011 14:31:00 -0000 1.647 @@ -365,7 +365,7 @@ f6d0683e51e0fcab06e6a79724685d26 src/nut-2.6.2.tar.gz cf1c017496b066b45ffe3d7a303fd6ad src/oidentd-2.0.7.tar.gz f39402fb6c14bcf569fcdb683796df71 src/open-iscsi-git-20110526.tar.bz2 -06f299375a91fbcba9d16b5007490023 src/open-vm-tools-2011.10.26-514583.tar.gz +428d803f6fe3424af88768fc2f88f9ae src/open-vm-tools-2011.11.20-535097.tar.gz e3d08dedfb9e6a9a1e24f6766f6dadd0 src/openl2tp-1.8.tar.gz ec63f9c2add59f323a0459128846905b src/openldap-2.4.25.tgz afe17eee7e98d3b8550cc349834a85d0 src/openssh-5.9p1.tar.gz |
From: Heiko Z. <smi...@us...> - 2011-12-14 14:28:51
|
Update of /cvsroot/devil-linux/build In directory vz-cvs-3.sog:/tmp/cvs-serv19600 Modified Files: CHANGES Log Message: - open-vm-tools init script now uses the default path for the plugins - clamav doesn't update the virus signatures on start anymore, if freshclam - is enabled - freshclam now starts before clamav - updated open-vm-tools to 2011.11.20-535097 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1479 retrieving revision 1.1480 diff -u -d -r1.1479 -r1.1480 --- CHANGES 13 Dec 2011 19:54:10 -0000 1.1479 +++ CHANGES 14 Dec 2011 14:28:49 -0000 1.1480 @@ -23,6 +23,10 @@ 1.6.0-RC1 WIP - resolved bug #118 - install-on-usb fails to install grub (64 bit versions) +- open-vm-tools init script now uses the default path for the plugins +- clamav doesn't update the virus signatures on start anymore, if freshclam is enabled +- freshclam now starts before clamav +- updated open-vm-tools to 2011.11.20-535097 - disabled the hardened compile for the kernel, it doesn't boot with it since 3.1 - updated grsecurity to 2.2.2-3.1.5-201112101853 - updated kernel to 3.1.5 |
From: Heiko Z. <smi...@us...> - 2011-12-13 19:54:12
|
Update of /cvsroot/devil-linux/build In directory vz-cvs-3.sog:/tmp/cvs-serv20129 Modified Files: CHANGES md5sum.lst Log Message: - disabled the hardened compile for the kernel, it doesn't boot with it - since 3.1 - updated grsecurity to 2.2.2-3.1.5-201112101853 - updated kernel to 3.1.5 - added ability to change specs file Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1478 retrieving revision 1.1479 diff -u -d -r1.1478 -r1.1479 --- CHANGES 11 Dec 2011 22:05:58 -0000 1.1478 +++ CHANGES 13 Dec 2011 19:54:10 -0000 1.1479 @@ -22,9 +22,10 @@ # 1.6.0-RC1 -- downgraded kernel to 3.0.8 until boot issues with hardened gcc are resolved WIP - resolved bug #118 - install-on-usb fails to install grub (64 bit versions) -- updated grsecurity to 2.2.2-3.1.4-201112082139 +- disabled the hardened compile for the kernel, it doesn't boot with it since 3.1 +- updated grsecurity to 2.2.2-3.1.5-201112101853 +- updated kernel to 3.1.5 - added fail2ban 0.8.4 - updated grub to 1.99 - resolved bug #117 - install-on-usb fails (syslinux) Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.645 retrieving revision 1.646 diff -u -d -r1.645 -r1.646 --- md5sum.lst 11 Dec 2011 22:05:58 -0000 1.645 +++ md5sum.lst 13 Dec 2011 19:54:10 -0000 1.646 @@ -33,7 +33,7 @@ 950e2248f8effeba45bc132fe9b95f20 src/asm_types.h.patch.bz2 91583a14bcbd637adaa9b07ea49c5d4b src/attr_2.4.43-1.tar.gz 96a2a01529c8084222f85469a1b493f7 src/aufs2-pax-fix.patch.bz2 -b065d906e00e96f01fc042eec1e5df59 src/aufs3-git-20111030.tar.bz2 +825998fe5a756ea64c4f32562820781e src/aufs3-git-20111213.tar.xz 864d785215aa60d627c91fcb21b05b07 src/autoconf-2.68.tar.bz2 c2972c4d9b3e29c03d5f2af86249876f src/automake-1.11.1.tar.bz2 e4db89a2a403ff4c47d66ac66fad1f43 src/avahi-0.6.30.tar.gz @@ -182,7 +182,7 @@ 03e3451a38b0d615cb113cbeaf252dc0 src/grep-2.9.tar.gz b2151714de0c8d31d864fc7b7b9fcb3a src/groff-1.20.1-badchar.patch.bz2 48fa768dd6fdeb7968041dd5ae8e2b02 src/groff-1.20.1.tar.gz -f93df6ce78084d4814bc1bc9ac8bc77f src/grsecurity-2.2.2-3.0.8-201110250925.patch.bz2 +8ceff52d1bc261a05189b0c48ec52a06 src/grsecurity-2.2.2-3.1.5-201112101853.patch.bz2 27e360b951f006c464299d06bbd63442 src/grub-1.99.tar.xz 167f952085ab6e1d7695fb12be92fccd src/grub-patches.tar.xz e381b8506210c794278f5527cba0e765 src/gzip-1.4.tar.gz @@ -238,7 +238,7 @@ a2c10c04f396a9ce72894beb18b4e1f9 src/jpegsrc.v8c.tar.gz e850eb91e4d3b94b194efe8e953204c5 src/kbd-1.15.2.tar.bz2 6c3065c94bb9e2187c4b5a80f6d8be31 src/keepalived-1.1.20.tar.gz -d11a37f3ad043e84f7c77bfecb1a1c77 src/kernel-patches-2.6.tar.bz2 +246cc0b3578a25dc134e22e7829b87e4 src/kernel-patches-3.x.tar.xz 31e7156698a6f214b4067afb9e13728f src/kid-0.9.6.tar.gz 11d6ea999f1819e1b5535895ab0cc848 src/knock-0.5.patch.bz2 ca09d61458974cff90a700aba6120891 src/knock-0.5.tar.gz @@ -291,7 +291,7 @@ 9abc9959823ca9ff904f1fbcf21df066 src/libxml2-2.7.7.tar.gz e61d0364a30146aaa3001296f853b2b9 src/libxslt-1.1.26.tar.gz a49dce62f632fd0ad5f20000efa54f4c src/linux-2.6.31-mppe-mppc-1.3.patch.bz2 -398e95866794def22b12dfbc15ce89c0 src/linux-3.0.tar.bz2 +edbdc798f23ae0f8045c82f6fa22c536 src/linux-3.1.tar.xz 8c0eebda8524fc87da1393b4564d279b src/lm_sensors-3.3.1.tar.bz2 9ec24a9f2cf588b348adf1a1381af8a4 src/loadlin16c-devil.tar.bz2 552639142e163745f6bcd4f1f3816d8a src/logrotate-3.7.1.tar.gz @@ -382,7 +382,7 @@ e6f90c8e57e236d45626d479feca2dc4 src/pam_otp_auth-3.2.2.tar.gz a5d27ccbaaad9d9fb254b01a3c12bd06 src/pam_radius-1.3.17.tar.gz 30ceb6df7e8681891e865e2fe5a7903d src/parted-2.3.tar.gz -c0ffed740f6acd153db3be041b8f250e src/patch-3.0.8.xz +829f9aa6d1ec6a4d16506d118ab0703a src/patch-3.1.5.xz 289248c80d96184a902ffac1db56543f src/patch-o-matic-ng-20090819.tar.bz2 ad241429bf352d1b55493153f2eaae2f src/pax-linux-2.6.32.10-test27.patch.bz2 acf0e368cb33bc2f6a335ba3f5e4fd2b src/pax-utils-0.1.15.tar.bz2 |
From: Heiko Z. <smi...@us...> - 2011-12-12 13:49:21
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv30422 Modified Files: grsecurity Log Message: make sure we find the patch Index: grsecurity =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/grsecurity,v retrieving revision 1.46 retrieving revision 1.47 diff -u -d -r1.46 -r1.47 --- grsecurity 5 Dec 2011 09:11:38 -0000 1.46 +++ grsecurity 12 Dec 2011 13:49:18 -0000 1.47 @@ -21,7 +21,7 @@ if [ "$CONFIG_GRSECURITY" = "y" ] ; then cd $KERNELDIR if [ ! -f devil-linux-grsec-kernel-patches.done ]; then - bzcat $DL_DIR/src/grsecurity-2.*$CONFIG_LINUX_VERSION*.patch.bz2 | sed -e "s/-Wno-empty-body//g" | patch -p1 || exit 1 + bzcat $DL_DIR/src/grsecurity-2.*.patch.bz2 | sed -e "s/-Wno-empty-body//g" | patch -p1 || exit 1 touch devil-linux-grsec-kernel-patches.done fi # make sure we got all the line breaks we need |
From: Heiko Z. <smi...@us...> - 2011-12-11 22:06:00
|
Update of /cvsroot/devil-linux/build In directory vz-cvs-3.sog:/tmp/cvs-serv6043 Modified Files: CHANGES md5sum.lst Log Message: downgraded kernel to 3.0.8 until boot issues with hardened gcc are resolved Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1477 retrieving revision 1.1478 diff -u -d -r1.1477 -r1.1478 --- CHANGES 10 Dec 2011 19:11:54 -0000 1.1477 +++ CHANGES 11 Dec 2011 22:05:58 -0000 1.1478 @@ -22,6 +22,7 @@ # 1.6.0-RC1 +- downgraded kernel to 3.0.8 until boot issues with hardened gcc are resolved WIP - resolved bug #118 - install-on-usb fails to install grub (64 bit versions) - updated grsecurity to 2.2.2-3.1.4-201112082139 - added fail2ban 0.8.4 Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.644 retrieving revision 1.645 diff -u -d -r1.644 -r1.645 --- md5sum.lst 10 Dec 2011 19:11:54 -0000 1.644 +++ md5sum.lst 11 Dec 2011 22:05:58 -0000 1.645 @@ -33,7 +33,7 @@ 950e2248f8effeba45bc132fe9b95f20 src/asm_types.h.patch.bz2 91583a14bcbd637adaa9b07ea49c5d4b src/attr_2.4.43-1.tar.gz 96a2a01529c8084222f85469a1b493f7 src/aufs2-pax-fix.patch.bz2 -c087d38f08da8712c221a66340c0b255 src/aufs3-git-20111119.tar.xz +b065d906e00e96f01fc042eec1e5df59 src/aufs3-git-20111030.tar.bz2 864d785215aa60d627c91fcb21b05b07 src/autoconf-2.68.tar.bz2 c2972c4d9b3e29c03d5f2af86249876f src/automake-1.11.1.tar.bz2 e4db89a2a403ff4c47d66ac66fad1f43 src/avahi-0.6.30.tar.gz @@ -182,7 +182,7 @@ 03e3451a38b0d615cb113cbeaf252dc0 src/grep-2.9.tar.gz b2151714de0c8d31d864fc7b7b9fcb3a src/groff-1.20.1-badchar.patch.bz2 48fa768dd6fdeb7968041dd5ae8e2b02 src/groff-1.20.1.tar.gz -ea9404796f25ab5bb9ed162b0e44f32d src/grsecurity-2.2.2-3.1.4-201112082139.patch.bz2 +f93df6ce78084d4814bc1bc9ac8bc77f src/grsecurity-2.2.2-3.0.8-201110250925.patch.bz2 27e360b951f006c464299d06bbd63442 src/grub-1.99.tar.xz 167f952085ab6e1d7695fb12be92fccd src/grub-patches.tar.xz e381b8506210c794278f5527cba0e765 src/gzip-1.4.tar.gz @@ -238,7 +238,7 @@ a2c10c04f396a9ce72894beb18b4e1f9 src/jpegsrc.v8c.tar.gz e850eb91e4d3b94b194efe8e953204c5 src/kbd-1.15.2.tar.bz2 6c3065c94bb9e2187c4b5a80f6d8be31 src/keepalived-1.1.20.tar.gz -246cc0b3578a25dc134e22e7829b87e4 src/kernel-patches-3.x.tar.xz +d11a37f3ad043e84f7c77bfecb1a1c77 src/kernel-patches-2.6.tar.bz2 31e7156698a6f214b4067afb9e13728f src/kid-0.9.6.tar.gz 11d6ea999f1819e1b5535895ab0cc848 src/knock-0.5.patch.bz2 ca09d61458974cff90a700aba6120891 src/knock-0.5.tar.gz @@ -291,7 +291,7 @@ 9abc9959823ca9ff904f1fbcf21df066 src/libxml2-2.7.7.tar.gz e61d0364a30146aaa3001296f853b2b9 src/libxslt-1.1.26.tar.gz a49dce62f632fd0ad5f20000efa54f4c src/linux-2.6.31-mppe-mppc-1.3.patch.bz2 -edbdc798f23ae0f8045c82f6fa22c536 src/linux-3.1.tar.xz +398e95866794def22b12dfbc15ce89c0 src/linux-3.0.tar.bz2 8c0eebda8524fc87da1393b4564d279b src/lm_sensors-3.3.1.tar.bz2 9ec24a9f2cf588b348adf1a1381af8a4 src/loadlin16c-devil.tar.bz2 552639142e163745f6bcd4f1f3816d8a src/logrotate-3.7.1.tar.gz @@ -382,7 +382,7 @@ e6f90c8e57e236d45626d479feca2dc4 src/pam_otp_auth-3.2.2.tar.gz a5d27ccbaaad9d9fb254b01a3c12bd06 src/pam_radius-1.3.17.tar.gz 30ceb6df7e8681891e865e2fe5a7903d src/parted-2.3.tar.gz -e9843abdf27d3ecb57d02f710aca4854 src/patch-3.1.4.xz +c0ffed740f6acd153db3be041b8f250e src/patch-3.0.8.xz 289248c80d96184a902ffac1db56543f src/patch-o-matic-ng-20090819.tar.bz2 ad241429bf352d1b55493153f2eaae2f src/pax-linux-2.6.32.10-test27.patch.bz2 acf0e368cb33bc2f6a335ba3f5e4fd2b src/pax-utils-0.1.15.tar.bz2 |
From: Heiko Z. <smi...@us...> - 2011-12-10 20:58:18
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory vz-cvs-3.sog:/tmp/cvs-serv26276/scripts/configuration Removed Files: iproute2.config Log Message: iproute is not an optional package anymore --- iproute2.config DELETED --- |
From: Heiko Z. <smi...@us...> - 2011-12-10 20:58:17
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv26276/scripts Modified Files: iproute2 Log Message: iproute is not an optional package anymore Index: iproute2 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/iproute2,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- iproute2 5 Dec 2011 09:11:38 -0000 1.34 +++ iproute2 10 Dec 2011 20:58:15 -0000 1.35 @@ -20,7 +20,6 @@ case $1 in build ) - if [ "$CONFIG_IPROUTE2" = "y" ]; then #if [ ! -f devil-linux-patches.done ]; then # touch devil-linux-patches.done # zcat $DL_DIR/src/iproute_*.diff.gz | patch -p1 || exit 1 @@ -32,11 +31,9 @@ make SBINDIR=/sbin $PMAKE all || exit 1 - fi ;; install ) - if [ "$CONFIG_IPROUTE2" = "y" ]; then rm -rf $TMPDIR || exit 1 mkdir -p $TMPDIR/usr/sbin || exit 1 @@ -51,7 +48,6 @@ cp -dpR $TMPDIR/* $CDDIR/ || exit 1 rm -rf $TMPDIR || exit 1 - fi ;; * ) |
From: Heiko Z. <smi...@us...> - 2011-12-10 20:34:51
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory vz-cvs-3.sog:/tmp/cvs-serv23750 Modified Files: prepare.config Log Message: we need to default to initramfs Index: prepare.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/prepare.config,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- prepare.config 10 Dec 2011 19:11:55 -0000 1.31 +++ prepare.config 10 Dec 2011 20:34:49 -0000 1.32 @@ -22,7 +22,7 @@ test -z "$CONFIG_PARALLEL_JOBS" && CONFIG_PARALLEL_JOBS=1 menu_add "Build Configuration" list "Parallel Jobs" CONFIG_PARALLEL_JOBS 1 2 3 4 5 6 7 8 9 10 -test -z "$CONFIG_INITRD_FS" && CONFIG_INITRD_FS=EXT2 +test -z "$CONFIG_INITRD_FS" && CONFIG_INITRD_FS=INITRAMFS menu_add "Build Configuration" list "InitRD Filesystem" CONFIG_INITRD_FS EXT2 INITRAMFS # Options from gcc v3.2.3 |
From: Heiko Z. <smi...@us...> - 2011-12-10 20:31:00
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv22506 Modified Files: finalize Log Message: small builds don't have anything in lib64 Index: finalize =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/finalize,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- finalize 9 Dec 2011 13:10:29 -0000 1.14 +++ finalize 10 Dec 2011 20:30:58 -0000 1.15 @@ -28,7 +28,7 @@ if [ "$CONFIG_CPU" = "x86_64" ]; then cp -dfpvR $CDDR/lib64/* $CDDIR/lib/ || exit 1 - cp -dfpvR $CDDIR/usr/lib64/* $CDDIR/usr/lib/ || exit 1 + cp -dfpvR $CDDIR/usr/lib64/* $CDDIR/usr/lib/ rm -rf $CDDIR/lib64 || exit 1 rm -rf $CDDIR/usr/lib64 || exit 1 ln -sf lib $CDDIR/lib64 || exit 1 |
From: Heiko Z. <smi...@us...> - 2011-12-10 20:29:27
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv22397 Modified Files: create_cd_dirs Log Message: oops Index: create_cd_dirs =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/create_cd_dirs,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- create_cd_dirs 2 Nov 2011 14:03:41 -0000 1.37 +++ create_cd_dirs 10 Dec 2011 20:29:25 -0000 1.38 @@ -53,7 +53,7 @@ mk_dir $CDDIR/usr/local $DIRS if [ "$CONFIG_CPU" = "x86_64" ]; then - mk_dir $CDDIR/var lib64 usr/lib64 + mk_dir $CDDIR lib64 usr/lib64 fi DIRS='lock/subsys log mail run spool opt cache lib/misc local tmp db adm/mount adm/initrd' |
From: Heiko Z. <smi...@us...> - 2011-12-10 19:35:59
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv15744 Modified Files: docbook2X Log Message: we need perl enabled in order to build this Index: docbook2X =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/docbook2X,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- docbook2X 5 Dec 2011 09:11:37 -0000 1.7 +++ docbook2X 10 Dec 2011 19:35:57 -0000 1.8 @@ -19,11 +19,13 @@ case $1 in build ) - ./configure --prefix=/usr --with-html-xsl || exit 1 - make $PMAKE || exit 1 - # install it, because it's needed by some programs + if [ "$CONFIG_PERL" = "y" ]; then + ./configure --prefix=/usr --with-html-xsl || exit 1 + make $PMAKE || exit 1 + # install it, because it's needed by some programs - make install || exit 1 + make install || exit 1 + fi ;; * ) |
From: Heiko Z. <smi...@us...> - 2011-12-10 19:34:32
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv15546/scripts Modified Files: intltool Log Message: no need to build this without avahi Index: intltool =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/intltool,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- intltool 5 Dec 2011 09:11:38 -0000 1.3 +++ intltool 10 Dec 2011 19:34:30 -0000 1.4 @@ -16,12 +16,14 @@ case $1 in build ) + if [ "$CONFIG_AVAHI" = "y" ]; then ./configure --prefix=/usr --localstatedir=/var || exit 1 make $PMAKE all || exit 1 # install it in local system, because other programs could need it make install - ;; + fi + ;; * ) echo "ERROR ($0)" |