Control: tags -1 + patch
I investigated some more, and from <UR: https://github.com/yasm/yasm/issues/157 > I got the idea that this is an issue with parallell build, and sure enough, on the testing machine were I was able to reproduce the error, it went away by using 'debuild -j1'. Thus, the simple fix for this is the following change: diff --git a/debian/rules b/debian/rules index cc8db6a..a84feb4 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f %: - dh $@ + dh $@ --no-parallel override_dh_auto_install: dh_auto_install -- Happy hacking Petter Reinholdtsen