Description: Use only relative paths to make build reproducible
 See also https://tests.reproducible-builds.org/debian/issues/unstable/gcc_captures_build_path_issue.html
Bug: https://bugs.bacula.org/view.php?id=2440
Author: Sven Hartge <sven@svenhartge.de>

--- a/src/dird/Makefile.in
+++ b/src/dird/Makefile.in
@@ -13,9 +13,9 @@
 dir_group=@dir_group@
 
 # one up
-basedir = @BUILD_DIR@/src
+basedir = ..
 # top dir
-topdir = @BUILD_DIR@
+topdir = ../..
 # this dir relative to top dir
 thisdir = src/dird
 
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -9,9 +9,9 @@
 .PATH:		.
 
 # one up
-basedir = @BUILD_DIR@
+basedir = ..
 # top dir
-topdir = @BUILD_DIR@
+topdir = ..
 # this dir relative to top dir
 thisdir = src
 
