Codebase list ioport / fresh-snapshots/main
Drop patch Fix-parallel-make, present upstream. Debian Janitor 2 years ago
3 changed file(s) with 1 addition(s) and 25 deletion(s). Raw diff Collapse all Expand all
11
22 * New upstream snapshot.
33 * Drop patch Mark-package-as-foreign-to-automake, present upstream.
4 * Drop patch Fix-parallel-make, present upstream.
45
56 -- Debian Janitor <janitor@jelmer.uk> Thu, 03 Jun 2021 13:00:17 -0000
67
+0
-24
debian/patches/Fix-parallel-make less more
0 From: Lubomir Rintel <lkundrak@v3.sk>
1 Date: Fri, 5 Jan 2018 11:04:22 +0100
2 Subject: Fix parallel make
3
4 ioport (1.2-1) UNRELEASED; urgency=medium
5
6 * Initial release. (Closes: #883628)
7 ---
8 Makefile.am | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
10
11 diff --git a/Makefile.am b/Makefile.am
12 index 7bc203f..1a2026f 100644
13 --- a/Makefile.am
14 +++ b/Makefile.am
15 @@ -4,7 +4,7 @@ inb_SOURCES = port.c
16 inb_CFLAGS = -Wall
17
18 # Make hard links for local testing before installation.
19 -all-local:
20 +all-local: $(bin_PROGRAMS)
21 for p in outb inw outw inl outl; do \
22 rm -f $$p; \
23 ln inb $$p; \
0 Fix-parallel-make