diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-06-26 01:45:40 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-06-26 01:45:40 +0800 |
commit | 2082411afe994093b548c3d41279a8cc119fb3ee (patch) | |
tree | 4bfccff761fa5279858e24b0645746c4fb8d391b /multimedia | |
parent | 69f85091ff9ab52c81c26a8ae24c63c6fce8268f (diff) | |
download | marcuscom-ports-2082411afe994093b548c3d41279a8cc119fb3ee.tar marcuscom-ports-2082411afe994093b548c3d41279a8cc119fb3ee.tar.gz marcuscom-ports-2082411afe994093b548c3d41279a8cc119fb3ee.tar.bz2 marcuscom-ports-2082411afe994093b548c3d41279a8cc119fb3ee.tar.lz marcuscom-ports-2082411afe994093b548c3d41279a8cc119fb3ee.tar.xz marcuscom-ports-2082411afe994093b548c3d41279a8cc119fb3ee.tar.zst marcuscom-ports-2082411afe994093b548c3d41279a8cc119fb3ee.zip |
Conditionally set DIST if not already set. This will fix the problem with
plugin suites such as bad and ugly extracting the good tarball. This may
not be the ideal fix. It may be better to modify each plug-in suite to
set gst_${GST_PLUGIN}_DIST, but it just seems awkward doing:
gst_ugly_DIST= ugly
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6490 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'multimedia')
-rw-r--r-- | multimedia/gstreamer-plugins/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/gstreamer-plugins/Makefile.common b/multimedia/gstreamer-plugins/Makefile.common index 07be2d123..ba3a14ba0 100644 --- a/multimedia/gstreamer-plugins/Makefile.common +++ b/multimedia/gstreamer-plugins/Makefile.common @@ -1,5 +1,5 @@ # $FreeBSD: ports/multimedia/gstreamer-plugins/Makefile.common,v 1.34 2006/06/09 20:24:02 ahze Exp $ -# $MCom: ports/multimedia/gstreamer-plugins/Makefile.common,v 1.53 2006/06/24 17:42:51 marcus Exp $ +# $MCom: ports/multimedia/gstreamer-plugins/Makefile.common,v 1.54 2006/06/24 20:27:14 marcus Exp $ # base BASE_GST_ALL_PLUGINS= \ alsa \ @@ -300,7 +300,7 @@ gst_wavpack_DIST= bad .endif # NO_GSTREAMER_COMMON gst_${GST_PLUGIN}_DIST?= good -DIST= ${gst_${GST_PLUGIN}_DIST} +DIST?= ${gst_${GST_PLUGIN}_DIST} .if !defined(NO_GSTREAMER_COMMON) gst_${GST_PLUGIN}_BUILD_DEPENDS?= |