summaryrefslogtreecommitdiff
path: root/libguile/guile-doc-snarf.in
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>2000-03-13 11:04:41 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>2000-03-13 11:04:41 +0000
commita1bfef7f94fcee062d7d217e29b8d05a8050c42c (patch)
tree8b68630955e402262984437f428aab430c0dac1b /libguile/guile-doc-snarf.in
parentb44a555abf2720dc7640b68327f6e5160d1e53f1 (diff)
downloadguile-a1bfef7f94fcee062d7d217e29b8d05a8050c42c.tar.gz
* 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.)
Diffstat (limited to 'libguile/guile-doc-snarf.in')
-rwxr-xr-xlibguile/guile-doc-snarf.in2
1 files changed, 1 insertions, 1 deletions
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.$$"