Package: qrisk2 Version: 0.1.20150729-1 Severity: important Tags: patch User: [email protected] Usertags: hurd
Hello, qrisk2 currently FTBFS on !linux archs because its Makefile hardcodes a dependency on /usr/include/linux/string.h. The attached patch fixes this. Samuel -- System Information: Debian Release: stretch/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable-debug'), (500, 'testing-debug'), (500, 'buildd-unstable'), (500, 'unstable'), (500, 'stable'), (500, 'oldstable'), (1, 'experimental-debug'), (1, 'buildd-experimental'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.8.0-1-amd64 (SMP w/4 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) -- Samuel Anyone who thinks UNIX is intuitive should be forced to write 5000 lines of code using nothing but vi or emacs. AAAAACK! (Discussion in comp.os.linux.misc on the intuitiveness of commands, especially Emacs.)
--- Makefile.original 2016-11-23 02:32:44.462886297 +0100 +++ Makefile 2016-11-23 02:34:23.474413600 +0100 @@ -81,9 +81,9 @@ # DO NOT DELETE c/Q80_model_4_0.o: /usr/include/math.h /usr/include/features.h -c/Q80_model_4_0.o: /usr/include/linux/string.h +c/Q80_model_4_0.o: /usr/include/string.h c/Q80_model_4_0.o: include/clinrisk/Q80_model_4_0.h include/clinrisk/utils.h c/Q80_model_4_1.o: /usr/include/math.h /usr/include/features.h -c/Q80_model_4_1.o: /usr/include/linux/string.h +c/Q80_model_4_1.o: /usr/include/string.h c/Q80_model_4_1.o: include/clinrisk/Q80_model_4_1.h include/clinrisk/utils.h -c/utils.o: /usr/include/linux/string.h include/clinrisk/utils.h +c/utils.o: /usr/include/string.h include/clinrisk/utils.h

