diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-10-17 09:43:16 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-10-17 09:44:37 +0000 |
commit | 007e6eed7600d4b390c5db2870986465592bbcfc (patch) | |
tree | 4622048a0b0392d9694794f3113117eb34a9a0b0 | |
parent | Removing allow-symlinks.patch, not needed anymore (Closes: #1043415). (diff) | |
download | netdata-007e6eed7600d4b390c5db2870986465592bbcfc.tar.xz netdata-007e6eed7600d4b390c5db2870986465592bbcfc.zip |
Removing generated files to fix FTBFS when building twice in a row (Closes: #1046477).
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rwxr-xr-x | debian/rules | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index f5df93026..cd01812b3 100755 --- a/debian/rules +++ b/debian/rules @@ -48,6 +48,11 @@ execute_after_dh_auto_clean: rm -rf build-core rm -rf build-core-no-sse debian/tmp-core-no-sse + for FILE in $$(find tests -type f -name "*.in"); \ + do \ + rm -f $$(dirname $${FILE})/$$(basename $${FILE} .in); \ + done + override_dh_auto_configure: mkdir -p build-core dh_auto_configure -B build-core -- --libdir=/usr/lib --libexecdir=/usr/lib \ |