1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 20:00:19 +02:00

* guile-doc-snarf.in: Don't use absolute path for `sed'. (Note

that we can't use autoconf for this.  Autoconf itself relies on
the existence of `sed' somewhere on your path.  (Thanks to Dirk
Herrman.)
This commit is contained in:
Mikael Djurfeldt 2000-03-13 11:04:41 +00:00
parent b44a555abf
commit a1bfef7f94

View file

@ -12,7 +12,7 @@ filename=`basename $fullfilename`
# because the makefile redirects output to the .x file # because the makefile redirects output to the .x file
# which creates the file before the inclusion occurs) # which creates the file before the inclusion occurs)
# --12/12/99 gjb # --12/12/99 gjb
no_ext=`echo $filename | /bin/sed 's/\.[^.]*$//g'` no_ext=`echo $filename | sed 's/\.[^.]*$//g'`
dot_doc=${no_ext}.doc dot_doc=${no_ext}.doc
temp="/tmp/snarf.$$" temp="/tmp/snarf.$$"