gstreamer/idiottest.mak
Richard Boulton 7dfeffc2a5 Fix a couple of formatting errors in idiottest, and add plugin-srcdir warning to configure.base.
Original commit message from CVS:
Fix a couple of formatting errors in idiottest, and add plugin-srcdir
warning to configure.base.
2001-05-31 19:08:41 +00:00

16 lines
652 B
Makefile

# Idiot test to stop the installing of versions with plugin srcdir enabled
install-exec-local:
if PLUGINS_USE_SRCDIR
@echo "*** ERROR: Cannot install:"
@echo "GStreamer was configured using the --enable-plugin-srcdir option."
@echo
@echo "This option is for development purposes only: binaries built with"
@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