diff options
author | Green, Paul <Paul.Green@stratus.com> | 2009-07-29 22:05:18 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-07-29 22:05:18 +0100 |
commit | ef314d296a4a0765d59203c399398dbd0a97fcc5 (patch) | |
tree | 336d85784b9d437b7666f18b2ec2f7c71f534ba7 /makedepend.SH | |
parent | f9a83b002447a32d10950dbf65a6f1c4e13eadcc (diff) | |
download | perl-ef314d296a4a0765d59203c399398dbd0a97fcc5.tar.gz |
Escape the periods in some Stratus VOS-specific code in makedepend.SH
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 3630087e60..445ccfa667 100755 --- a/makedepend.SH +++ b/makedepend.SH @@ -214,7 +214,7 @@ if $test -s .deptmp; then $echo "# If this runs make out of memory, delete /usr/include lines." \ >> $mf.new if [ "$osname" = vos ]; then - $sed 's|.incl.c|.h|' .deptmp >.deptmp.vos + $sed 's|\.incl\.c|.h|' .deptmp >.deptmp.vos mv -f .deptmp.vos .deptmp fi $sed 's|^\(.*\$(OBJ_EXT):\) *\(.*/.*\.c\) *$|\1 \2; '"$defrule \2|" .deptmp \ |