Backport to squeeze
[hcoop/zz_old/debian/config-package-dev.git] / decode
CommitLineData
51ae82e4
JR
1#!/usr/bin/perl
2# Reverse the encoding performed by the "encode" helper.
3#
4# This is not currently used by config-package-dev itself, but can by
5# used by helper programs that want to determine what files are diverted
6# by a package generated using this system.
7
8use strict;
9use warnings;
10use Debian::Debhelper::config_package;
11
12print decode($ARGV[0]);