test reply-all

jerenkra...@apache.org wrote:
Author: jerenkrantz
Date: Fri Jan  2 21:06:43 2009
New Revision: 730911

URL: http://svn.apache.org/viewvc?rev=730911&view=rev
Log:
Silence ulimit warnings on platforms/configs that don't support setting the
soft limit to the hard limit (aka default Mac OS X).

* support/config.m4: Redirect output to /dev/null.

Modified:
    httpd/httpd/trunk/support/config.m4

Modified: httpd/httpd/trunk/support/config.m4
URL: 
http://svn.apache.org/viewvc/httpd/httpd/trunk/support/config.m4?rev=730911&r1=730910&r2=730911&view=diff
==============================================================================
--- httpd/httpd/trunk/support/config.m4 (original)
+++ httpd/httpd/trunk/support/config.m4 Fri Jan  2 21:06:43 2009
@@ -127,7 +127,7 @@
         APACHECTL_ULIMIT="ulimit -S -n \`ulimit -h -n\`"
         ;;
     *)
-        if TMP_ULIMIT=`ulimit -H -n` && ulimit -S -n $TMP_ULIMIT ; then
+        if TMP_ULIMIT=`ulimit -H -n` && ulimit -S -n $TMP_ULIMIT >/dev/null 
2>&1; then
             APACHECTL_ULIMIT="ulimit -S -n \`ulimit -H -n\`"
         else
             APACHECTL_ULIMIT=""



--
------------------------------------------------------------------------
1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70  3F8C 75B8 8FFB DB9B 8C1C
Philip M. Gollucci (pgollu...@p6m7g8.com) c: 703.336.9354
Consultant          - P6M7G8 Inc.                http://p6m7g8.net
Director IT         - RideCharge, Inc.           http://ridecharge.com
Contractor          - PositiveEnergyUSA          http://positiveenergyusa.com
ASF Member          - Apache Software Foundation http://apache.org
FreeBSD Committer   - FreeBSD Foundation         http://freebsd.org

Work like you don't need the money,
love like you'll never get hurt,
and dance like nobody's watching.

Reply via email to