more fixes

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9469 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2005-01-12 17:03:32 +00:00
parent 77fdc2f305
commit bf2c74aaf0
3 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2005-01-12 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* reLyX/configure.ac: make sure the prefix is correctly quoted.
* configure.m4: small visual fix to the search for groff
2005-01-06 Angus Leeming <leeming@lyx.org>
* Makefile.am: remove mention of configure.cmd.

View File

@ -330,7 +330,7 @@ test "$DVIPNG" = "dvipng" && \
# Search a *roff program (used to translate tables in ASCII export)
LYXRC_PROG([for a *roff formatter], \ascii_roff_command, dnl
'groff -t -Tlatin1 $$FName' nroff,dnl
"groff -t -Tlatin1 \$\$FName" nroff,dnl
test "$prog" = "nroff" && prog='tbl $$FName | nroff')
# Search the ChkTeX program

View File

@ -24,6 +24,8 @@ test -x reLyX && rm -f reLyX
# fix the value of the prefixes.
test "x$prefix" = xNONE && prefix=$ac_default_prefix
test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
# make sure prefix is correctly quoted
prefix="'$prefix'"
# we need to expand ${datadir} to put it into the reLyX wrapper.
LYX_DIR=`eval "echo \`eval \"echo ${datadir}/${PACKAGE}\"\`"`