Skip Menu |

This queue is for tickets about the Tk CPAN distribution.

Report information
The Basics
Id: 4551
Status: resolved
Priority: 0/
Queue: Tk

People
Owner: Nobody in particular
Requestors: perl [...] crystalflame.net
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 804.025_beta6
Fixed in: (no value)



Subject: patch to fix spelling of dependencies
Hi, here's a patch against _beta7 to fix the spelling of dependencies everywhere. Thanks to ignatz for noticing this one :) - R. (#perl/coraline)
diff -r -u Tk-804.025_beta7/INSTALL Tk-804.025_beta7.1/INSTALL --- Tk-804.025_beta7/INSTALL Sat Jul 19 01:38:59 2003 +++ Tk-804.025_beta7.1/INSTALL Wed Dec 3 02:18:30 2003 @@ -30,7 +30,7 @@ perl Makefile.PL X11INC=/usr/local/share/X11R5/include X11LIB=/usr/local/arch/X11R5/lib -'make test' is a little tedious as it re-checks all the dependancies. +'make test' is a little tedious as it re-checks all the dependencies. perl -Mblib demos/widget diff -r -u Tk-804.025_beta7/Tk/MMutil.pm Tk-804.025_beta7.1/Tk/MMutil.pm --- Tk-804.025_beta7/Tk/MMutil.pm Sun Nov 2 12:43:27 2003 +++ Tk-804.025_beta7.1/Tk/MMutil.pm Wed Dec 3 02:18:41 2003 @@ -60,13 +60,13 @@ my ($self) = @_; my $dep = "config :: \$(C_FILES) \$(H_FILES)\n\t$self->{NOECHO}\$(NOOP)\n"; my $mTk = $self->{'MTK'}; - $dep .= "# Begin Munging dependancies\n"; + $dep .= "# Begin Munging dependencies\n"; foreach my $file (sort keys %$mTk) { $dep .= "$file : ".$mTk->{$file}." \$(TKDIR)/pTk/Tcl-pTk\n"; $dep .= "\t\$(PERL) \$(TKDIR)/pTk/Tcl-pTk ".$mTk->{$file}." $file\n"; } - $dep .= "# End Munging dependancies\n\n"; + $dep .= "# End Munging dependencies\n\n"; return $dep; } diff -r -u Tk-804.025_beta7/Tk/MakeDepend.pm Tk-804.025_beta7.1/Tk/MakeDepend.pm --- Tk-804.025_beta7/Tk/MakeDepend.pm Sun Nov 16 10:39:54 2003 +++ Tk-804.025_beta7.1/Tk/MakeDepend.pm Wed Dec 3 02:18:41 2003 @@ -254,7 +254,7 @@ my $base = $1; my $file = $_; my %dep; - warn "Finding dependancies for $file\n"; + warn "Finding dependencies for $file\n"; scan_file($_,\%dep); my $str = "\n$base\$(OBJ_EXT) : $base.c"; delete $dep{$file}; diff -r -u Tk-804.025_beta7/pTk/Makefile.PL Tk-804.025_beta7.1/pTk/Makefile.PL --- Tk-804.025_beta7/pTk/Makefile.PL Mon Nov 10 11:53:29 2003 +++ Tk-804.025_beta7.1/pTk/Makefile.PL Wed Dec 3 02:18:45 2003 @@ -20,7 +20,7 @@ sub MY::top_targets { my ($self) = @_; local $_ = $self->MM::top_targets; - s/^(\$\(O_FILES\)\s*:.*)$/# Explicit dependancies provided\n# $1/m; + s/^(\$\(O_FILES\)\s*:.*)$/# Explicit dependencies provided\n# $1/m; return $_; } diff -r -u Tk-804.025_beta7/pTk/mTk/tclWin/makefile.vc Tk-804.025_beta7.1/pTk/mTk/tclWin/makefile.vc --- Tk-804.025_beta7/pTk/mTk/tclWin/makefile.vc Thu Jul 24 12:37:34 2003 +++ Tk-804.025_beta7.1/pTk/mTk/tclWin/makefile.vc Wed Dec 3 02:18:57 2003 @@ -52,7 +52,7 @@ # as the root of the install tree. # tidy/clean/hose -- varying levels of cleaning. # genstubs -- Rebuilds the Stubs table and support files (dev only). -# depend -- Generates an accurate set of source dependancies for this +# depend -- Generates an accurate set of source dependencies for this # makefile. Helpful to avoid problems when the sources are # refreshed and you rebuild, but can "overbuild" when common # headers like tclInt.h just get small changes. @@ -635,7 +635,7 @@ ### The following objects are part of the stub library and should not -### be built as DLL objects. -Zl is used to avoid a dependancy on any +### be built as DLL objects. -Zl is used to avoid a dependency on any ### specific c-runtime. $(TMP_DIR)\tclStubLib.obj: $(GENERICDIR)\tclStubLib.c diff -r -u Tk-804.025_beta7/pTk/mTk/win/makefile.vc Tk-804.025_beta7.1/pTk/mTk/win/makefile.vc --- Tk-804.025_beta7/pTk/mTk/win/makefile.vc Thu Jul 24 12:37:41 2003 +++ Tk-804.025_beta7.1/pTk/mTk/win/makefile.vc Wed Dec 3 02:19:01 2003 @@ -51,7 +51,7 @@ # clean -- removes the contents of $(TMP_DIR) # hose -- removes the contents of $(TMP_DIR) and $(OUT_DIR) # genstubs -- rebuilds the Stubs table and support files (dev only). -# depend -- Generates an accurate set of source dependancies for this +# depend -- Generates an accurate set of source dependencies for this # makefile. Helpful to avoid problems when the sources are # refreshed and you rebuild, but can "overbuild" when common # headers like tkInt.h just get small changes. diff -r -u Tk-804.025_beta7/pTk/mkVFunc Tk-804.025_beta7.1/pTk/mkVFunc --- Tk-804.025_beta7/pTk/mkVFunc Sun Oct 26 05:58:37 2003 +++ Tk-804.025_beta7.1/pTk/mkVFunc Wed Dec 3 02:19:03 2003 @@ -322,7 +322,7 @@ print VMACRO "#endif /* _${gard}_VM */\n"; close(VMACRO); print VFUNC "#endif /* _$gard */\n"; - close(VFUNC); # Close this last - Makefile dependancy + close(VFUNC); # Close this last - Makefile dependency unlink($mdef) unless $opt{'m'}; unlink($fdef) unless $opt{'t'};
Thanks applied (eventually)