summaryrefslogtreecommitdiffstats
path: root/debian/mk.control
diff options
context:
space:
mode:
authorDavid I. Lehn <dlehn@users.sourceforge.net>2004-03-04 23:27:42 +0000
committerDavid I. Lehn <dlehn@users.sourceforge.net>2004-03-04 23:27:42 +0000
commitcb924406cdef87fee308f0801c2a997c6c9a2a10 (patch)
treef4a3886ba65a247b98c1115eab3e818806621fa2 /debian/mk.control
parentef255131dc7988d4ef77f76bbdf94cf44b428057 (diff)
downloadgst-plugins-bad-cb924406cdef87fee308f0801c2a997c6c9a2a10.tar.gz
gst-plugins-bad-cb924406cdef87fee308f0801c2a997c6c9a2a10.tar.bz2
gst-plugins-bad-cb924406cdef87fee308f0801c2a997c6c9a2a10.zip
Debian package info not maintained here.
Original commit message from CVS: Debian package info not maintained here.
Diffstat (limited to 'debian/mk.control')
-rwxr-xr-xdebian/mk.control17
1 files changed, 0 insertions, 17 deletions
diff --git a/debian/mk.control b/debian/mk.control
deleted file mode 100755
index f9251402..00000000
--- a/debian/mk.control
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/perl -w
-
-
-open BUILDDEPS, "debian/build-deps";
-@builddeplist = <BUILDDEPS>;
-close BUILDDEPS;
-
-chomp(@builddeplist);
-$builddeps = join(", ", @builddeplist);
-
-open CONTROLIN, "debian/control.in";
-
-while(<CONTROLIN>){
- s/BUILDDEPS/$builddeps/;
- print;
-}
-