* build-aux/gitlog-to-changelog: Fix condition.
Add missing ";".
+2012-07-29 Akim Demaille <akim@lrde.epita.fr>
+
+ gitlog-to-changelog: fix previous change
+ * build-aux/gitlog-to-changelog: Fix condition.
+ Add missing ";".
+
2012-07-29 Akim Demaille <akim@lrde.epita.fr>
gitlog-to-changelog: don't expect .git to be in $srcdir
my $git_dir = qx($cmd);
defined $git_dir
or die "$ME: cannot run $qcmd: $!\n";
- $? != 0
- or die "$ME: $qcmd had unexpected exit code or signal ($?)\n"
+ $? == 0
+ or die "$ME: $qcmd had unexpected exit code or signal ($?)\n";
chomp $git_dir;
push @res, "--git-dir=$git_dir/.git";
}