d674ff7e3f
- Update to snapshot 20210419 (f97b507a) OBS-URL: https://build.opensuse.org/request/show/898680 OBS-URL: https://build.opensuse.org/package/show/security:forensics/libhmac?expand=0&rev=6
61 lines
1.7 KiB
Diff
61 lines
1.7 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 | 10 ----------
|
|
configure.ac | 8 --------
|
|
2 files changed, 18 deletions(-)
|
|
|
|
Index: libhmac/Makefile.am
|
|
===================================================================
|
|
--- libhmac.orig/Makefile.am
|
|
+++ libhmac/Makefile.am
|
|
@@ -3,15 +3,7 @@ ACLOCAL_AMFLAGS = -I m4
|
|
SUBDIRS = \
|
|
include \
|
|
common \
|
|
- libcerror \
|
|
- libcthreads \
|
|
libhmac \
|
|
- libclocale \
|
|
- libcnotify \
|
|
- libcsplit \
|
|
- libuna \
|
|
- libcfile \
|
|
- libcpath \
|
|
hmactools \
|
|
po \
|
|
manuals \
|
|
@@ -63,8 +55,6 @@ lib: library
|
|
|
|
library:
|
|
(cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS))
|
|
- (cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS))
|
|
- (cd $(srcdir)/libcthreads && $(MAKE) $(AM_MAKEFLAGS))
|
|
(cd $(srcdir)/libhmac && $(MAKE) $(AM_MAKEFLAGS))
|
|
(cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
|
|
|
|
Index: libhmac/configure.ac
|
|
===================================================================
|
|
--- libhmac.orig/configure.ac
|
|
+++ libhmac/configure.ac
|
|
@@ -133,15 +133,7 @@ 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([libhmac/Makefile])
|
|
-AC_CONFIG_FILES([libclocale/Makefile])
|
|
-AC_CONFIG_FILES([libcnotify/Makefile])
|
|
-AC_CONFIG_FILES([libcsplit/Makefile])
|
|
-AC_CONFIG_FILES([libuna/Makefile])
|
|
-AC_CONFIG_FILES([libcfile/Makefile])
|
|
-AC_CONFIG_FILES([libcpath/Makefile])
|
|
AC_CONFIG_FILES([hmactools/Makefile])
|
|
AC_CONFIG_FILES([po/Makefile.in])
|
|
AC_CONFIG_FILES([po/Makevars])
|