Revision: 6180
          http://ipcop.svn.sourceforge.net/ipcop/?rev=6180&view=rev
Author:   gespinasse
Date:     2011-12-24 11:18:01 +0000 (Sat, 24 Dec 2011)
Log Message:
-----------
It's look I forgot make.sh change related to slqite. Commit that unbreak the 
build

No need to 'cat FILE | grep' when 'grep FILE' is enought

Modified Paths:
--------------
    ipcop/trunk/make.sh

Modified: ipcop/trunk/make.sh
===================================================================
--- ipcop/trunk/make.sh 2011-12-24 11:08:53 UTC (rev 6179)
+++ ipcop/trunk/make.sh 2011-12-24 11:18:01 UTC (rev 6180)
@@ -454,7 +454,7 @@
        # Take care of garbage
        sed -i "s@^ .*@#& ## DISABLED by make.sh@g" ${IPCOP_CONFIG}
 
-       for LINE in `cat ${IPCOP_CONFIG} | grep -v "^#"`
+       for LINE in `grep -v '^#' ${IPCOP_CONFIG}`
        do
                VARIABLE=`echo "${LINE}" | cut -d= -f 1`
                VALUE=`echo "${LINE}" | cut -d= -f 2-`
@@ -1836,6 +1836,7 @@
        chroot_make misc-progs
        chroot_make nano
        chroot_make nasm                # only used in case we patch and fully 
compile syslinux
+       chroot_make sqlite              # before DBD-SQLite and ulogd that 
depend on it
        # PERL CPAN packages
        chroot_make Archive-Zip         # OpenVPN
        chroot_make URI
@@ -1865,7 +1866,6 @@
        chroot_make sendEmail
        chroot_make setserial
        chroot_make smartmontools
-       chroot_make sqlite
        chroot_make cppunit             # for squid tests
        chroot_make squid
        chroot_make squid-graph

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Write once. Port to many.
Get the SDK and tools to simplify cross-platform app development. Create 
new or port existing apps to sell to consumers worldwide. Explore the 
Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join
http://p.sf.net/sfu/intel-appdev
_______________________________________________
Ipcop-svn mailing list
Ipcop-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipcop-svn

Reply via email to