Skip to content
Snippets Groups Projects
Commit 9f8e1295 authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer
Browse files

fixed that the configuration for loop for replacing the DEBVERSION and...

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
parent 33ad0dac
No related branches found
No related tags found
No related merge requests found
...@@ -47,7 +47,7 @@ SOVERSION="@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@${PROJECT_BUILDVERSION ...@@ -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 # replace #DEBVERSION# inside the template files in the debian_from_template directory, also replace DEBVERSION in the
# file names # 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$||" ` file_target=`echo ${file_source} | sed -e "s|DEBVERSION|${DEBVERSION}|g" -e "s|.template$||" `
echo "$file_source -> $file_target" echo "$file_source -> $file_target"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment