Mercurial > hg > RemoteEditor > vim7
diff src/pathdef.sh @ 0:76efa0be13f1
Initial revision
author | atsuki |
---|---|
date | Sat, 10 Nov 2007 15:07:22 +0900 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/pathdef.sh Sat Nov 10 15:07:22 2007 +0900 @@ -0,0 +1,11 @@ +#! /bin/sh +# +# pathdef.sh: adjust pathdef.c for auto/link.sed, if it exists +# +if test -s auto/link.sed; then + cp auto/pathdef.c auto/pathdef.tmp + sed -f auto/link.sed <auto/pathdef.tmp >auto/pathdef.c + rm -f auto/pathdef.tmp +fi + +# vim:set sw=2 et: