From a1bfef7f94fcee062d7d217e29b8d05a8050c42c Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Mon, 13 Mar 2000 11:04:41 +0000 Subject: [PATCH] * 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.) --- libguile/guile-doc-snarf.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/guile-doc-snarf.in b/libguile/guile-doc-snarf.in index 3009af070..9affee8cc 100755 --- a/libguile/guile-doc-snarf.in +++ b/libguile/guile-doc-snarf.in @@ -12,7 +12,7 @@ filename=`basename $fullfilename` # because the makefile redirects output to the .x file # which creates the file before the inclusion occurs) # --12/12/99 gjb -no_ext=`echo $filename | /bin/sed 's/\.[^.]*$//g'` +no_ext=`echo $filename | sed 's/\.[^.]*$//g'` dot_doc=${no_ext}.doc temp="/tmp/snarf.$$"