thin-provisioning-tools: update to 0.7.4
This commit is contained in:
parent
718c42cae9
commit
f549fd36a1
@ -0,0 +1,35 @@
|
|||||||
|
From 8d75be81120b9cf172c95d0153c5f845ed804234 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Adam Sampson <ats-github@offog.org>
|
||||||
|
Date: Mon, 16 Oct 2017 13:07:36 +0100
|
||||||
|
Subject: [functional-tests] fix build with testing disabled (#88)
|
||||||
|
|
||||||
|
The rule for lib/libft.so is only enabled with --enable-testing,
|
||||||
|
so the default target shouldn't depend unconditionally on it.
|
||||||
|
With the default configure options, the build failed with:
|
||||||
|
make: *** No rule to make target 'lib/libft.so', needed by 'all'. Stop.
|
||||||
|
---
|
||||||
|
Makefile.in | 7 ++++++-
|
||||||
|
1 file changed, 6 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git Makefile.in.orig Makefile.in
|
||||||
|
index e745739..02b75dd 100644
|
||||||
|
--- Makefile.in.orig
|
||||||
|
+++ Makefile.in
|
||||||
|
@@ -21,8 +21,13 @@ V=@
|
||||||
|
PROGRAMS=\
|
||||||
|
bin/pdata_tools
|
||||||
|
|
||||||
|
+ifeq ("@TESTING@", "yes")
|
||||||
|
+TESTLIBS=\
|
||||||
|
+ lib/libft.so
|
||||||
|
+endif
|
||||||
|
+
|
||||||
|
.PHONY: all
|
||||||
|
-all: $(PROGRAMS) lib/libft.so
|
||||||
|
+all: $(PROGRAMS) $(TESTLIBS)
|
||||||
|
|
||||||
|
SOURCE=\
|
||||||
|
base/output_file_requirements.cc \
|
||||||
|
--
|
||||||
|
cgit v1.1-22-g1649
|
||||||
|
|
@ -1,6 +1,6 @@
|
|||||||
# Template file for 'thin-provisioning-tools'
|
# Template file for 'thin-provisioning-tools'
|
||||||
pkgname=thin-provisioning-tools
|
pkgname=thin-provisioning-tools
|
||||||
version=0.7.1
|
version=0.7.4
|
||||||
revision=1
|
revision=1
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
hostmakedepends="automake libtool pkg-config"
|
hostmakedepends="automake libtool pkg-config"
|
||||||
@ -10,7 +10,7 @@ maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|||||||
license="GPL-3"
|
license="GPL-3"
|
||||||
homepage="https://github.com/jthornber/thin-provisioning-tools"
|
homepage="https://github.com/jthornber/thin-provisioning-tools"
|
||||||
distfiles="${homepage}/archive/v${version}.tar.gz"
|
distfiles="${homepage}/archive/v${version}.tar.gz"
|
||||||
checksum=da45e387bb7ad5b1b8727dc3e013a1136a18fe7a59bea19074a945ff6d73b925
|
checksum=f65f84e653e182480dacad77c611e13cd6de1c354e02fb4b96db4d2f328c3904
|
||||||
|
|
||||||
pre_configure() {
|
pre_configure() {
|
||||||
autoreconf -fi
|
autoreconf -fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user