From 467f221d20f2a1927ef695bd4ac92559257ce8f9 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Thu, 16 Dec 2010 10:47:34 +0100 Subject: cloop: bump and fix package On a machine without zlib-dev installed, cloop must rely on the host-zlib compiled by Buildroot, but due to the horrible cloop build system, this didn't happen and the build was failing. Therefore, we now pass all the $(HOST_CONFIGURE_OPTS) when building cloop, and we fix the Makefile so that it takes into account CFLAGS/LDFLAGS passed in the environment or command-line and do not override them. [Peter: fix typos, remove HOST_MAKE_ENV] Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- package/cloop/cloop.mk | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'package/cloop/cloop.mk') diff --git a/package/cloop/cloop.mk b/package/cloop/cloop.mk index 4c160986c..fa47a5f5f 100644 --- a/package/cloop/cloop.mk +++ b/package/cloop/cloop.mk @@ -1,12 +1,11 @@ -CLOOP_VERSION=2.631-1 +CLOOP_VERSION=2.634-1 CLOOP_SOURCE=cloop_$(CLOOP_VERSION).tar.gz CLOOP_SITE=http://debian-knoppix.alioth.debian.org/packages/sources/cloop HOST_CLOOP_DEPENDENCIES = host-zlib define HOST_CLOOP_BUILD_CMDS - $(HOST_MAKE_ENV) $(MAKE1) \ - CFLAGS="$(HOST_CFLAGS) -Wall -O2 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DUSE_ERROR_SILENT" -C $(@D) APPSONLY=yes + $(HOST_CONFIGURE_OPTS) $(MAKE1) -C $(@D) APPSONLY=yes endef define HOST_CLOOP_INSTALL_CMDS -- cgit v1.2.3