From: Raphael Hertzog Date: Sat, 29 Dec 2007 14:07:53 +0000 (+0100) Subject: Add a warning to avoid adding unnecessary stuff in Dpkg.pm X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22ddeee0236bdff13745c1c4c4f81c1f30951138;p=dpkg Add a warning to avoid adding unnecessary stuff in Dpkg.pm --- diff --git a/ChangeLog b/ChangeLog index 1c2dd709..e8589af6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-12-28 Raphael Hertzog + + * scripts/Dpkg.pm: Add a warning to avoid adding unnecessary stuff + in that module. + 2007-12-27 Guillem Jover * scripts/Dpkg.pm (%EXPORT_TAGS, @EXPORT_OK): Remove. diff --git a/scripts/Dpkg.pm b/scripts/Dpkg.pm index 7886018d..4a5dcbbf 100644 --- a/scripts/Dpkg.pm +++ b/scripts/Dpkg.pm @@ -3,6 +3,12 @@ package Dpkg; use strict; use warnings; +# This module is the only one provided by dpkg and not dpkg-dev +# +# Don't add things here if you don't need them in dpkg itself. +# If you do, and also use the new stuff in dpkg-dev, you'll have to bump +# the dependency of dpkg-dev on dpkg. + use base qw(Exporter); our @EXPORT = qw($version $progname $admindir $dpkglibdir $pkgdatadir);