[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:43:03 UTC 2017


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=d2909fc

The following commit has been merged in the master branch:
commit d2909fc9ba7eada97950db466c25a1711d45c3a7
Author: Robin Mills <robin at clanmills.com>
Date:   Tue Apr 24 04:04:42 2012 +0000

    adding mingfixup.sh for use by test/Makefile
---
 test/Makefile     |  1 +
 test/mingfixup.sh | 18 ++++++++++++++++++
 2 files changed, 19 insertions(+)

diff --git a/test/Makefile b/test/Makefile
index f0c4a31..ee3d67f 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -76,6 +76,7 @@ TESTS = addmoddel.sh      \
         conversions.sh
 
 test:
+	./mingfixup.sh
 	@list='$(TESTS)'; for p in $$list; do \
 	    echo Running $$p ...; \
 	    ./$$p; \
diff --git a/test/mingfixup.sh b/test/mingfixup.sh
new file mode 100755
index 0000000..2bec577
--- /dev/null
+++ b/test/mingfixup.sh
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+##
+# for MING, ensure that we have .exe files in src and samples
+os=$(uname)
+if [ "${os:0:4}" == "MING" ]; then
+	for dir in ../src/.libs ../samples/.libs; do
+		for file in $dir/*.dll $dir/*.exe ; do
+			leaf=$(basename $file)
+			if [ ! -e $dir/../$leaf ]; then
+				cp $file $dir/.. 2>/dev/null >/dev/null
+			fi
+		done
+	done
+fi
+
+# That's all Folks!
+##

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list