libfcache/system-libs.patch
Greg Freemyer 43c2ea847f Accepting request 898223 from home:jengelh:forensics
also for creg

- Update to snapshot 20210413 (33c1ab96)
  * No changelog was provided
- Add system-libs.patch

OBS-URL: https://build.opensuse.org/request/show/898223
OBS-URL: https://build.opensuse.org/package/show/security:forensics/libfcache?expand=0&rev=10
2021-06-09 00:10:53 +00:00

50 lines
1.5 KiB
Diff

From: Jan Engelhardt <jengelh@inai.de>
Date: 2021-05-12 17:36:02.536572543 +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: libfcache/Makefile.am
===================================================================
--- libfcache.orig/Makefile.am
+++ libfcache/Makefile.am
@@ -3,9 +3,6 @@ ACLOCAL_AMFLAGS = -I m4
SUBDIRS = \
include \
common \
- libcerror \
- libcthreads \
- libcdata \
libfcache \
po \
manuals \
@@ -55,9 +52,6 @@ lib: library
library:
(cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS))
- (cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS))
- (cd $(srcdir)/libcthreads && $(MAKE) $(AM_MAKEFLAGS))
- (cd $(srcdir)/libcdata && $(MAKE) $(AM_MAKEFLAGS))
(cd $(srcdir)/libfcache && $(MAKE) $(AM_MAKEFLAGS))
(cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
Index: libfcache/configure.ac
===================================================================
--- libfcache.orig/configure.ac
+++ libfcache/configure.ac
@@ -97,9 +97,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([libcdata/Makefile])
AC_CONFIG_FILES([libfcache/Makefile])
AC_CONFIG_FILES([po/Makefile.in])
AC_CONFIG_FILES([po/Makevars])