mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-29 05:01:23 +00:00
Abstract the plugin-srcdir installation idiottest into a separate file, and include it from the include Makefile.am, ...
Original commit message from CVS: Abstract the plugin-srcdir installation idiottest into a separate file, and include it from the include Makefile.am, to ensure that it gets called at the start of a make install process, not after the whole thing has happened.
This commit is contained in:
parent
5d2d762874
commit
c3086c42aa
3 changed files with 22 additions and 15 deletions
18
Makefile.am
18
Makefile.am
|
@ -34,7 +34,8 @@ man_MANS = gstreamer-config.1
|
||||||
EXTRA_DIST = gstreamer.spec.in gstreamer-config.in gstreamer.m4 \
|
EXTRA_DIST = gstreamer.spec.in gstreamer-config.in gstreamer.m4 \
|
||||||
gstreamer.pc.in gstreamer-uninstalled.pc.in \
|
gstreamer.pc.in gstreamer-uninstalled.pc.in \
|
||||||
configure.base autogen.sh \
|
configure.base autogen.sh \
|
||||||
LICENSE REQUIREMENTS ABOUT-NLS $(man_MANS)
|
LICENSE REQUIREMENTS ABOUT-NLS $(man_MANS) \
|
||||||
|
idiottest.mak
|
||||||
|
|
||||||
dist-hook:
|
dist-hook:
|
||||||
cp gstreamer.spec $(distdir)
|
cp gstreamer.spec $(distdir)
|
||||||
|
@ -42,20 +43,7 @@ dist-hook:
|
||||||
rpm: dist
|
rpm: dist
|
||||||
rpm -ta $(distdir).tar.gz
|
rpm -ta $(distdir).tar.gz
|
||||||
|
|
||||||
# Idiot test to stop the installing of versions with plugin srcdir enabled
|
include $(top_srcdir)/idiottest.mak
|
||||||
install-exec-hook:
|
|
||||||
if PLUGINS_USE_SRCDIR
|
|
||||||
@echo "*** ERROR: Cannot install:" 2>&1
|
|
||||||
@echo "GStreamer was configured using the --enable-plugin-srcdir option." 2>&1
|
|
||||||
@echo
|
|
||||||
@echo "This option is for development purposes only: binaries built with" 2>&1
|
|
||||||
@echo "it should be used with code in the build tree only. To build an"
|
|
||||||
@echo "installable version, use ./configure without the --enable-plugin-srcdir"
|
|
||||||
@echo "option. Note that the autogen.sh script supplies the plugin srcdir"
|
|
||||||
@echo "option automatically - it cannot be used to configure installable builds"
|
|
||||||
@echo
|
|
||||||
@/bin/false
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Rules to generate autoconf scripts if configure.base is updated
|
# Rules to generate autoconf scripts if configure.base is updated
|
||||||
$(top_srcdir)/configure.in: $(top_srcdir)/configure.base
|
$(top_srcdir)/configure.in: $(top_srcdir)/configure.base
|
||||||
|
|
15
idiottest.mak
Normal file
15
idiottest.mak
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
# Idiot test to stop the installing of versions with plugin srcdir enabled
|
||||||
|
install-exec-local:
|
||||||
|
if PLUGINS_USE_SRCDIR
|
||||||
|
@echo "*** ERROR: Cannot install:" 2>&1
|
||||||
|
@echo "GStreamer was configured using the --enable-plugin-srcdir option." 2>&1
|
||||||
|
@echo
|
||||||
|
@echo "This option is for development purposes only: binaries built with" 2>&1
|
||||||
|
@echo "it should be used with code in the build tree only. To build an"
|
||||||
|
@echo "installable version, use ./configure without the --enable-plugin-srcdir"
|
||||||
|
@echo "option. Note that the autogen.sh script supplies the plugin srcdir"
|
||||||
|
@echo "option automatically - it cannot be used to configure installable builds"
|
||||||
|
@echo
|
||||||
|
@/bin/false
|
||||||
|
endif
|
||||||
|
|
|
@ -4,3 +4,7 @@ noinst_HEADERS = \
|
||||||
mmx.h \
|
mmx.h \
|
||||||
sse.h \
|
sse.h \
|
||||||
gstaudio.h
|
gstaudio.h
|
||||||
|
|
||||||
|
# This test needs to go here because this is the first makefile which the
|
||||||
|
# install target gets run in.
|
||||||
|
include $(top_srcdir)/idiottest.mak
|
||||||
|
|
Loading…
Reference in a new issue