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:
Richard Boulton 2001-05-31 18:35:11 +00:00
parent 5d2d762874
commit c3086c42aa
3 changed files with 22 additions and 15 deletions

View file

@ -34,7 +34,8 @@ man_MANS = gstreamer-config.1
EXTRA_DIST = gstreamer.spec.in gstreamer-config.in gstreamer.m4 \
gstreamer.pc.in gstreamer-uninstalled.pc.in \
configure.base autogen.sh \
LICENSE REQUIREMENTS ABOUT-NLS $(man_MANS)
LICENSE REQUIREMENTS ABOUT-NLS $(man_MANS) \
idiottest.mak
dist-hook:
cp gstreamer.spec $(distdir)
@ -42,20 +43,7 @@ dist-hook:
rpm: dist
rpm -ta $(distdir).tar.gz
# Idiot test to stop the installing of versions with plugin srcdir enabled
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
include $(top_srcdir)/idiottest.mak
# Rules to generate autoconf scripts if configure.base is updated
$(top_srcdir)/configure.in: $(top_srcdir)/configure.base

15
idiottest.mak Normal file
View 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

View file

@ -4,3 +4,7 @@ noinst_HEADERS = \
mmx.h \
sse.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