From 9f8e1295e2cf351e009a2e5fc480b32fa9d3e007 Mon Sep 17 00:00:00 2001
From: Martin Hierholzer <martin.hierholzer@desy.de>
Date: Thu, 18 Aug 2016 10:35:14 +0200
Subject: [PATCH] fixed that the configuration for loop for replacing the
 DEBVERSION and SOVERSION in the debian_from_template was running on the wrong
 (non-existing) directory

---
 cmake/make_debian_package.sh.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmake/make_debian_package.sh.in b/cmake/make_debian_package.sh.in
index 1b21759..87bf0e9 100755
--- a/cmake/make_debian_package.sh.in
+++ b/cmake/make_debian_package.sh.in
@@ -47,7 +47,7 @@ SOVERSION="@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@${PROJECT_BUILDVERSION
 
 # replace #DEBVERSION# inside the template files in the debian_from_template directory, also replace DEBVERSION in the
 # file names
-for file_source in debian_from_template/* ; do
+for file_source in ../debian_from_template/* ; do
   file_target=`echo ${file_source} | sed -e "s|DEBVERSION|${DEBVERSION}|g" -e "s|.template$||" `
   
   echo "$file_source -> $file_target"
-- 
GitLab