ソースを参照

* scripts/dpkg-genchanges.pl ($pkgdatadir): New variable.
* scripts/dpkg-gencontrol.pl: Likewise.
* scripts/dpkg-source.pl: Likewise.
* scripts/dpkg-checkbuilddeps.pl: Likewise.
($dpkglibdir): Change to '..'.

Guillem Jover 19 年 前
コミット
bf9ce4b483
共有5 個のファイルを変更した14 個の追加2 個の削除を含む
  1. 8 0
      ChangeLog
  2. 2 1
      scripts/dpkg-checkbuilddeps.pl
  3. 1 0
      scripts/dpkg-genchanges.pl
  4. 2 1
      scripts/dpkg-gencontrol.pl
  5. 1 0
      scripts/dpkg-source.pl

+ 8 - 0
ChangeLog

@@ -1,3 +1,11 @@
+2007-05-08  Guillem Jover  <guillem@debian.org>
+
+	* scripts/dpkg-genchanges.pl ($pkgdatadir): New variable.
+	* scripts/dpkg-gencontrol.pl: Likewise.
+	* scripts/dpkg-source.pl: Likewise.
+	* scripts/dpkg-checkbuilddeps.pl: Likewise.
+	($dpkglibdir): Change to '..'.
+
 2007-05-08  Guillem Jover  <guillem@debian.org>
 
 	* scripts/update-alternatives.pl: Do not exit with an error on

+ 2 - 1
scripts/dpkg-checkbuilddeps.pl

@@ -5,7 +5,8 @@ use strict;
 use warnings;
 
 our $progname;
-our $dpkglibdir = "/usr/lib/dpkg"; # This line modified by Makefile
+our $dpkglibdir = "."; # This line modified by Makefile
+our $pkgdatadir = ".."; # This line modified by Makefile
 
 use Getopt::Long;
 

+ 1 - 0
scripts/dpkg-genchanges.pl

@@ -6,6 +6,7 @@ use warnings;
 our $progname;
 our $version = '1.3.0'; # This line modified by Makefile
 our $dpkglibdir = "."; # This line modified by Makefile
+our $pkgdatadir = ".."; # This line modified by Makefile
 
 use POSIX;
 use POSIX qw(:errno_h :signal_h);

+ 2 - 1
scripts/dpkg-gencontrol.pl

@@ -3,8 +3,9 @@
 use strict;
 use warnings;
 
-our $dpkglibdir = "."; # This line modified by Makefile
 our $version = '1.3.0'; # This line modified by Makefile
+our $dpkglibdir = "."; # This line modified by Makefile
+our $pkgdatadir = ".."; # This line modified by Makefile
 
 use POSIX;
 use POSIX qw(:errno_h);

+ 1 - 0
scripts/dpkg-source.pl

@@ -6,6 +6,7 @@ use warnings;
 our $progname;
 our $version = "1.3.0"; # This line modified by Makefile
 our $dpkglibdir = "."; # This line modified by Makefile
+our $pkgdatadir = ".."; # This line modified by Makefile
 
 my @filesinarchive;
 my %dirincluded;