Procházet zdrojové kódy

use space seperated output instead of comma seperated

Wichert Akkerman před 24 roky
rodič
revize
c05ce9c691
3 změnil soubory, kde provedl 9 přidání a 2 odebrání
  1. 5 0
      ChangeLog
  2. 2 0
      debian/changelog
  3. 2 2
      scripts/dpkg-checkbuilddeps.pl

+ 5 - 0
ChangeLog

@@ -1,3 +1,8 @@
+Wed Jan  2 15:00:26 CET 2002 Wichert Akkerman <wakkerma@debian.org>
+
+  * scripts/dpkg-checkbuilddeps.pl: use space seperated output instead
+    of comma seperated
+
 Tue Jan  1 14:10:55 CET 2002 Wichert Akkerman <wakkerma@debian.org>
 
   * archtable, scripts/dpkg-architecture.pl: Update SuperH architecture

+ 2 - 0
debian/changelog

@@ -62,6 +62,8 @@ dpkg (1.10) unstable; urgency=low
     Closes: #120924.
   * Make dpkg-checkbuilddeps always check for build-essential.  Closes:
     #118420.
+  * Use space seperated output instead of comma seperated in
+    dpkg-checkbuilddeps
 
  -- Wichert Akkerman <wakkerma@debian.org>  Mon, 20 Aug 2001 14:54:38 +0200
 

+ 2 - 2
scripts/dpkg-checkbuilddeps.pl

@@ -52,11 +52,11 @@ if (! $binary_only && $cdata =~ /^Build-Conflicts-Indep:$dep_regex/mi) {
 
 if (@unmet) {
 	print STDERR "$me: Unmet build dependencies: ";
-	print STDERR join(", ", @unmet), "\n";
+	print STDERR join(" ", @unmet), "\n";
 }
 if (@conflicts) {
 	print STDERR "$me: Build conflicts: ";
-	print STDERR join(", ", @conflicts), "\n";
+	print STDERR join(" ", @conflicts), "\n";
 }
 exit 1 if @unmet || @conflicts;