+ echo "PACK=version" >> debian/rules.pre
+ if [ "$compile_type" != "ANY" ]
+ then
+ if [ -z "$compile_target" ]
+ then
+ echo "compile_target is needed for target_type FILE"
+ exit 12
+ fi
+ echo "COMPILE_TARGET = $compile_target" >> debian/rules.pre
+ if [ -n "$target_name" ]
+ then
+ echo "TARGET = $target_name" >> debian/rules.pre
+ else
+ echo "TARGET = $paket" >> debian/rules.pre
+ fi
+ fi
+else
+ echo "Unknown target type: $target_type"
+ exit 13