e15d9e0fef
* https://github.com/ntop/nDPI/releases/tag/4.12 * https://github.com/ntop/nDPI/releases/tag/4.10 * https://github.com/ntop/nDPI/releases/tag/4.8 * https://github.com/ntop/nDPI/releases/tag/4.6 * https://github.com/ntop/nDPI/releases/tag/4.4 * https://github.com/ntop/nDPI/releases/tag/4.2 - Drop not longer needed patches * 0001-Added-ability-to-report-whether-a-protocol-is-encryp.patch * 0002-Report-whether-a-protocol-is-encrypted.patch * 0003-Firs-crash-on-ARM-during-steam-protocol-dissection.patch - Add patch: * fix-makefile.patch OBS-URL: https://build.opensuse.org/package/show/server:monitoring/ndpi?expand=0&rev=29
30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
diff --git a/src/lib/Makefile.in b/src/lib/Makefile.in
|
|
index b446ba2..e5d0ea4 100644
|
|
--- a/src/lib/Makefile.in
|
|
+++ b/src/lib/Makefile.in
|
|
@@ -11,7 +11,6 @@ RANLIB = @RANLIB@
|
|
#
|
|
# Installation directories
|
|
#
|
|
-PREFIX = @prefix@
|
|
libdir = @libdir@
|
|
includedir = @includedir@/ndpi
|
|
ifneq ($(OS),Windows_NT)
|
|
@@ -96,10 +95,10 @@ cppcheck:
|
|
cppcheck --template='{file}:{line}:{severity}:{message}' --quiet --enable=all --force -I ../include *.c protocols/*.c
|
|
|
|
install: $(NDPI_LIBS)
|
|
- mkdir -p $(DESTDIR)$(PREFIX)$(libdir)
|
|
- cp $(NDPI_LIBS) $(DESTDIR)$(PREFIX)$(libdir)/
|
|
- cp -P $(NDPI_LIB_SHARED_BASE) $(DESTDIR)$(PREFIX)$(libdir)/
|
|
- cp -P $(NDPI_LIB_SHARED_BASE).$(NDPI_VERSION_MAJOR) $(DESTDIR)$(PREFIX)$(libdir)/
|
|
- mkdir -p $(DESTDIR)$(PREFIX)$(includedir)
|
|
+ mkdir -p $(DESTDIR)$(libdir)
|
|
+ cp $(NDPI_LIBS) $(DESTDIR)$(libdir)/
|
|
+ cp -P $(NDPI_LIB_SHARED_BASE) $(DESTDIR)$(libdir)/
|
|
+ cp -P $(NDPI_LIB_SHARED_BASE).$(NDPI_VERSION_MAJOR) $(DESTDIR)$(libdir)/
|
|
+ mkdir -p $(DESTDIR)$(includedir)
|
|
#Avoid installing private header
|
|
- find ../include/*.h ! -name ndpi_private.h -exec cp "{}" $(DESTDIR)$(PREFIX)$(includedir)/ \;
|
|
+ find ../include/*.h ! -name ndpi_private.h -exec cp "{}" $(DESTDIR)$(includedir)/ \;
|