make: remove redundant 'touch configured'

PREPARE_SRC_VPATH is supposed to prepare the source, so leave
the creation of the 'configured' file to the actual Makefile target.
This commit is contained in:
Dmitry Lyzo 2022-12-26 12:00:20 +03:00
parent 44abd8ef19
commit 6fb73112f0

View File

@ -21,7 +21,6 @@ endef
define PREPARE_SRC_VPATH define PREPARE_SRC_VPATH
rm -rf build/lib/$(1) rm -rf build/lib/$(1)
mkdir -p build/lib/$(1) mkdir -p build/lib/$(1)
touch build/lib/$(1)/configured
endef endef
# All projects we build have autogen.sh, otherwise we could also fallback to `autoreconf -ivf .` # All projects we build have autogen.sh, otherwise we could also fallback to `autoreconf -ivf .`