> Package: svn-buildpackage
> Version: 0.6.16
> Severity: important
I suggest the attached patch to avoid the inclusion auf symbolic links
in the dirlist during the copy operation of svn-buildpackage.
Symbolic links to a directory are preserved.
Ciao,
Sandro Wefel
--- svn-buildpackage.org 2007-02-16 19:55:25.000000000 +0100
+++ svn-buildpackage 2007-02-16 19:58:30.000000000 +0100
@@ -361,7 +361,7 @@
for(keys %tmp) {
s#/$##;
next if !length($_);
- if(-d $_) {
+ if(-d $_ and not -l $_ ) {
push(@dirs,$_);
print STDERR "DIR: $_\n" if $opt_verbose;
}