09c7634248
Because dc3dd is being autoreconfigured and comes with an old gettext
infra, gettextize needs to be called so that the infra is updated to
match the newer version used in Buildroot.
Commit b36d57fab
included a patch to add the definition of MKDIR_P to
po/Makefile.in.in in order to fix autobuild failures that ocurred when
host-gettext was built before dc3dd. This patch is no longer necessary
as gettextize adds a new Makefile template which contains the needed
definition, so drop it.
Signed-off-by: Rodrigo Rebello <rprebello@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
645 B
Makefile
19 lines
645 B
Makefile
################################################################################
|
|
#
|
|
# dc3dd
|
|
#
|
|
################################################################################
|
|
|
|
DC3DD_VERSION_MAJOR = 7.2
|
|
DC3DD_VERSION = $(DC3DD_VERSION_MAJOR).641
|
|
DC3DD_SOURCE = dc3dd-$(DC3DD_VERSION).tar.xz
|
|
DC3DD_SITE = https://downloads.sourceforge.net/project/dc3dd/dc3dd/$(DC3DD_VERSION_MAJOR)
|
|
DC3DD_LICENSE = GPL-3.0+
|
|
DC3DD_LICENSE_FILES = COPYING
|
|
# We are patching Makefile.am, so we need to autoreconf. We also need to
|
|
# enable gettextize as dc3dd comes with an old gettext infra.
|
|
DC3DD_AUTORECONF = YES
|
|
DC3DD_GETTEXTIZE = YES
|
|
|
|
$(eval $(autotools-package))
|