bd03b2eb30
Add eppic library OBS-URL: https://build.opensuse.org/request/show/141575 OBS-URL: https://build.opensuse.org/package/show/Kernel:kdump/eppic?expand=0&rev=1
24 lines
561 B
Diff
24 lines
561 B
Diff
From: Petr Tesarik <ptesarik@suse.cz>
|
|
Subject: Fix the 'install' target
|
|
Patch-mainline: no
|
|
|
|
There is no directory called 'scripts', so the action for the 'install'
|
|
target runs into an endless loop.
|
|
|
|
Signed-off-by: Petr Tesarik <ptesarik@suse.cz>
|
|
|
|
---
|
|
libeppic/Makefile | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
--- a/libeppic/Makefile
|
|
+++ b/libeppic/Makefile
|
|
@@ -59,7 +59,6 @@ headers:
|
|
install -m 644 $(HFILES) $(ROOT)/usr/include
|
|
|
|
install: headers exports
|
|
- (cd scripts ; $(MAKE) install )
|
|
|
|
baseops.o: mkbaseop.c
|
|
$(CC) $(CFLAGS) -o mkbaseop mkbaseop.c
|