mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
7dfeffc2a5
Original commit message from CVS: Fix a couple of formatting errors in idiottest, and add plugin-srcdir warning to configure.base.
15 lines
652 B
Makefile
15 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
|
|
|