1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 19:25:25 +03:00
aports/testing/steghide/missing-files-configure-in.patch
Roberto Oliveira 5c5d866fec testing/steghide: fix build and enable on ppc64e
autoreconf was failing because steghide did not provide AUTHORS,
NEWS and ChangeLog files

Use 'foreign' keyword to allow automake runs whithout these files.
2017-06-14 15:04:01 +00:00

18 lines
526 B
Diff

autoreconf fails because steghide do not provide AUTHORS,
NEWS and ChangeLog files
Use 'foreign' keyword to allow automake runs whithout these files.
--- steghide-0.5.1/configure.in
+++ steghide-0.5.1/configure.in
@@ -1,7 +1,8 @@
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(src/main.cc)
+AC_INIT([steghide], [0.5.1])
+AC_CONFIG_SRCDIR([src/main.cc])
AC_CANONICAL_SYSTEM
-AM_INIT_AUTOMAKE(steghide, 0.5.1)
+AM_INIT_AUTOMAKE([foreign])
AM_CONFIG_HEADER(config.h)
dnl checks for programs.