diff options
author | Guillem Jover <guillem@debian.org> | 2011-07-04 18:55:03 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2011-07-07 10:42:30 +0200 |
commit | 9e53fcc54bddbbab53e964f3339bd712e41806e5 (patch) | |
tree | 77fb76f18b1fbfbffdefaa2c34d1fd0db351f1de /scripts/Dpkg/Control | |
parent | 868cccc78684cd098e4ca6f879492842e24eb9a6 (diff) | |
download | dpkg-9e53fcc54bddbbab53e964f3339bd712e41806e5.tar.gz |
Refer to Sources and Packages files as part of a repository
Instead of as being of exclusive use or owned by APT, which has never
been the case. Those files existed long before APT even existed.
Diffstat (limited to 'scripts/Dpkg/Control')
-rw-r--r-- | scripts/Dpkg/Control/Types.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Dpkg/Control/Types.pm b/scripts/Dpkg/Control/Types.pm index 56ddeca17..a1a659089 100644 --- a/scripts/Dpkg/Control/Types.pm +++ b/scripts/Dpkg/Control/Types.pm @@ -38,8 +38,8 @@ use constant { CTRL_UNKNOWN => 0, CTRL_INFO_SRC => 1, # First control block in debian/control CTRL_INFO_PKG => 2, # Subsequent control blocks in debian/control - CTRL_INDEX_SRC => 4, # Entry in APT's Packages files - CTRL_INDEX_PKG => 8, # Entry in APT's Sources files + CTRL_INDEX_SRC => 4, # Entry in repository's Packages files + CTRL_INDEX_PKG => 8, # Entry in repository's Sources files CTRL_PKG_SRC => 16, # .dsc file of source package CTRL_PKG_DEB => 32, # DEBIAN/control in binary packages CTRL_FILE_CHANGES => 64, # .changes file |