1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Lubomir Rintel <lkundrak@v3.sk>
Date: Fri, 5 Jan 2018 11:04:22 +0100
Subject: Fix parallel make
ioport (1.2-1) UNRELEASED; urgency=medium
* Initial release. (Closes: #883628)
---
Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index 7bc203f..1a2026f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -4,7 +4,7 @@ inb_SOURCES = port.c
inb_CFLAGS = -Wall
# Make hard links for local testing before installation.
-all-local:
+all-local: $(bin_PROGRAMS)
for p in outb inw outw inl outl; do \
rm -f $$p; \
ln inb $$p; \
|