From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lucas Meneghel Rodrigues Subject: [PATCH] Monotonic time test: Don't force static compilation of time_test Date: Tue, 23 Mar 2010 15:13:22 -0300 Message-ID: <1269368002-12652-1-git-send-email-lmr@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Cc: kvm@vger.kernel.org To: autotest@test.kernel.org Return-path: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: autotest-bounces@test.kernel.org Errors-To: autotest-bounces@test.kernel.org List-Id: kvm.vger.kernel.org The Makefile for the monotonic_test C program forces static compilation of the object files. Since we are compiling the code already, not having a static binary doesn't make much of a difference on the systems we are running this test. As the static compilation might fail in some boxes, just remove this constraint from the Makefile. Signed-off-by: Lucas Meneghel Rodrigues --- client/tests/monotonic_time/src/Makefile | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/client/tests/monotonic_time/src/Makefile b/client/tests/monotonic_time/src/Makefile index 56aa7b6..2121ec4 100644 --- a/client/tests/monotonic_time/src/Makefile +++ b/client/tests/monotonic_time/src/Makefile @@ -1,7 +1,6 @@ CC= cc CFLAGS= -O -std=gnu99 -Wall -LDFLAGS=-static LIBS= -lpthread -lrt PROG= time_test -- 1.6.6.1