diff options
| author | Eric Andersen <andersen@codepoet.org> | 2006-07-10 22:17:48 +0000 | 
|---|---|---|
| committer | Eric Andersen <andersen@codepoet.org> | 2006-07-10 22:17:48 +0000 | 
| commit | 12b74e53241a34719750af226c41d442b9790c5a (patch) | |
| tree | 82d5bef7d241b0704105a68e2f69ccf0b8c3f456 | |
| parent | a8c92e8083df0297f2faafa8562b2cd45b7914c1 (diff) | |
| download | buildroot-novena-12b74e53241a34719750af226c41d442b9790c5a.tar.gz buildroot-novena-12b74e53241a34719750af226c41d442b9790c5a.zip | |
remove junk, bump version, and generally clean things up
| -rw-r--r-- | package/dm/dm.mk | 16 | 
1 files changed, 13 insertions, 3 deletions
| diff --git a/package/dm/dm.mk b/package/dm/dm.mk index 81c3f39ee..a0bdd2519 100644 --- a/package/dm/dm.mk +++ b/package/dm/dm.mk @@ -23,8 +23,8 @@  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  # USA -DM_BASEVER=1.01 -DM_PATCH=05 +DM_BASEVER=1.02 +DM_PATCH=07  DM_VERSION=$(DM_BASEVER).$(DM_PATCH)  DM_SOURCE:=device-mapper.$(DM_VERSION).tgz  DM_SITE:=ftp://sources.redhat.com/pub/dm @@ -46,6 +46,12 @@ $(DM_DIR)/.configured: $(DM_DIR)/.unpacked  	(cd $(DM_DIR); rm -rf config.cache; \  		$(TARGET_CONFIGURE_OPTS) \  		CFLAGS="$(TARGET_CFLAGS)" \ +		ac_cv_have_decl_malloc=yes \ +		gl_cv_func_malloc_0_nonnull=yes \ +		ac_cv_func_malloc_0_nonnull=yes \ +		ac_cv_func_calloc_0_nonnull=yes \ +		ac_cv_func_realloc_0_nonnull=yes \ +		ac_cv_func_lstat_dereferences_slashed_symlink=yes \  		./configure \  		--target=$(GNU_TARGET_NAME) \  		--host=$(GNU_TARGET_NAME) \ @@ -53,7 +59,6 @@ $(DM_DIR)/.configured: $(DM_DIR)/.unpacked  		--prefix=/usr \  		$(DISABLE_NLS) \  		$(DISABLE_LARGEFILE) \ -		--with-kernel-dir=/work/richard/xen/linux-2.6.10-xen0 \  		--with-user=$(shell id -un) --with-group=$(shell id -gn) \  	);  	touch $(DM_DIR)/.configured @@ -68,15 +73,20 @@ $(DM_STAGING_BINARY) $(DM_STAGING_LIBRARY): $(DM_DIR)/.configured  # Install dmsetup from staging to target  $(DM_TARGET_BINARY): $(DM_STAGING_BINARY)  	$(INSTALL) -m 0755 $? $@ +	-$(STRIP) $(DM_TARGET_BINARY) +	touch -c $(DM_TARGET_BINARY)  # Install libdevmapper.so.1.00 from staging to target  $(DM_TARGET_LIBRARY).$(DM_BASEVER): $(DM_STAGING_LIBRARY)  	$(INSTALL) -m 0644 $? $@ +	-$(STRIP) $(DM_TARGET_LIBRARY) +	touch -c $(DM_TARGET_LIBRARY).$(DM_BASEVER)  # Makes libdevmapper.so a symlink to libdevmapper.so.1.00  $(DM_TARGET_LIBRARY): $(DM_TARGET_LIBRARY).$(DM_BASEVER)  	rm -f $@  	ln -s $(<F) $@ +	touch -c $(DM_TARGET_LIBRARY)  dm: uclibc $(DM_TARGET_BINARY) $(DM_TARGET_LIBRARY) | 
