[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[monit-dev] [monit] r252 committed - disable strip in make install ... w
From: |
monit |
Subject: |
[monit-dev] [monit] r252 committed - disable strip in make install ... when monit crashes, it is better to ... |
Date: |
Thu, 16 Sep 2010 11:10:01 +0000 |
Revision: 252
Author: martin2812
Date: Thu Sep 16 04:09:20 2010
Log: disable strip in make install ... when monit crashes, it is better to
get symbols from user, the file size increase is irrelevant nowadays with
hundreds of gigabytes/terabytes disks available
http://code.google.com/p/monit/source/detail?r=252
Modified:
/trunk/Makefile.in
/trunk/install-sh
=======================================
--- /trunk/Makefile.in Fri Jan 8 03:20:43 2010
+++ /trunk/Makefile.in Thu Sep 16 04:09:20 2010
@@ -36,7 +36,7 @@
MODE_DIRS = 755
INSTALL = @INSTALL@
-INSTALL_PROG = $(INSTALL) -m $(MODE_PROGS) -s
+INSTALL_PROG = $(INSTALL) -m $(MODE_PROGS)
INSTALL_FILE = $(INSTALL) -m $(MODE_FILES)
INSTALL_DIR = $(INSTALL) -m $(MODE_DIRS) -d
=======================================
--- /trunk/install-sh Thu Sep 16 04:03:55 2010
+++ /trunk/install-sh Thu Sep 16 04:09:20 2010
@@ -237,9 +237,9 @@
if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi &&
if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&
+ if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&
# don't strip - the file size will rise only only slightly,
whereas getting symbols is very valueable for debug
#if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&
- if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&
# Now rename the file to the real destination.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [monit-dev] [monit] r252 committed - disable strip in make install ... when monit crashes, it is better to ...,
monit <=