Jan Engelhardt
f6be2b1f67
OBS-URL: https://build.opensuse.org/package/show/security:forensics/libfmos?expand=0&rev=1
50 lines
1.5 KiB
Diff
50 lines
1.5 KiB
Diff
From: Jan Engelhardt <jengelh@inai.de>
|
|
Date: 2022-09-01 10:18:04.991878890 +0200
|
|
|
|
Some dirs are not present in snapshots directly generated from git
|
|
(nor are they marked as a submodule). Patch it out, since we have
|
|
them as system libs.
|
|
---
|
|
Makefile.am | 6 ------
|
|
configure.ac | 3 ---
|
|
2 files changed, 9 deletions(-)
|
|
|
|
Index: libfmos-20220811/Makefile.am
|
|
===================================================================
|
|
--- libfmos-20220811.orig/Makefile.am
|
|
+++ libfmos-20220811/Makefile.am
|
|
@@ -3,9 +3,6 @@ ACLOCAL_AMFLAGS = -I m4
|
|
SUBDIRS = \
|
|
include \
|
|
common \
|
|
- libcerror \
|
|
- libcthreads \
|
|
- libcnotify \
|
|
libfmos \
|
|
pyfmos \
|
|
pyfmos-python2 \
|
|
@@ -63,9 +60,6 @@ lib: library
|
|
|
|
library:
|
|
(cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS))
|
|
- (cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS))
|
|
- (cd $(srcdir)/libcthreads && $(MAKE) $(AM_MAKEFLAGS))
|
|
- (cd $(srcdir)/libcnotify && $(MAKE) $(AM_MAKEFLAGS))
|
|
(cd $(srcdir)/libfmos && $(MAKE) $(AM_MAKEFLAGS))
|
|
(cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
|
|
|
|
Index: libfmos-20220811/configure.ac
|
|
===================================================================
|
|
--- libfmos-20220811.orig/configure.ac
|
|
+++ libfmos-20220811/configure.ac
|
|
@@ -120,9 +120,6 @@ dnl Generate Makefiles
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_CONFIG_FILES([include/Makefile])
|
|
AC_CONFIG_FILES([common/Makefile])
|
|
-AC_CONFIG_FILES([libcerror/Makefile])
|
|
-AC_CONFIG_FILES([libcthreads/Makefile])
|
|
-AC_CONFIG_FILES([libcnotify/Makefile])
|
|
AC_CONFIG_FILES([libfmos/Makefile])
|
|
AC_CONFIG_FILES([pyfmos/Makefile])
|
|
AC_CONFIG_FILES([pyfmos-python2/Makefile])
|