diff options
author | David I. Lehn <dlehn@users.sourceforge.net> | 2004-03-04 23:27:42 +0000 |
---|---|---|
committer | David I. Lehn <dlehn@users.sourceforge.net> | 2004-03-04 23:27:42 +0000 |
commit | cb924406cdef87fee308f0801c2a997c6c9a2a10 (patch) | |
tree | f4a3886ba65a247b98c1115eab3e818806621fa2 /debian/mk.control | |
parent | ef255131dc7988d4ef77f76bbdf94cf44b428057 (diff) | |
download | gst-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-x | debian/mk.control | 17 |
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; -} - |