diff options
author | Aaron Crane <arc@cpan.org> | 2017-01-02 18:40:42 +0000 |
---|---|---|
committer | Aaron Crane <arc@cpan.org> | 2017-01-02 18:40:42 +0000 |
commit | c10193ec191fbd820c4c7f5198cd3092098ba035 (patch) | |
tree | 03f40373540a09f44c4067ed482eea32391f3bfb /makedepend.SH | |
parent | f3e2e2629f0f71cdbc3fe0b9102a74a041e7919a (diff) | |
download | perl-c10193ec191fbd820c4c7f5198cd3092098ba035.tar.gz |
makedepend.SH: omit trailing "." in progress messages
Since the message ends in the name of a file, I find that the trailing dot
makes it harder to select the filename in my terminal emulator.
Diffstat (limited to 'makedepend.SH')
-rwxr-xr-x | makedepend.SH | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makedepend.SH b/makedepend.SH index e4efae52d6..600288f3de 100755 --- a/makedepend.SH +++ b/makedepend.SH @@ -130,7 +130,7 @@ for file in `$cat .clist`; do */*) finc="-I`echo $file | sed 's#/[^/]*$##'`" ;; *) finc= ;; esac - $echo "Finding dependencies for $filebase$_o." + $echo "Finding dependencies for $filebase$_o" # Below, we strip out all but preprocessor directives. # We have to take care of situations like # #if defined(FOO) BAR /* comment line 1 |