build-sys: fix typo from 30688dde55

the fixes the usage of exec_prefix so configure will prepend the prefix again.

Signed-off-by: Robert Förster <Dessa@gmake.de>
This commit is contained in:
Robert Förster 2009-07-12 00:44:08 +02:00 committed by Karel Zak
parent fd0e397bb0
commit aaf3e8f5d4
1 changed files with 3 additions and 3 deletions

View File

@ -50,13 +50,13 @@ esac
AC_SUBST([libdirname])
# The original default values of {bin,sbin,lib}dir
usrbin_execdir='${_exec_prefix}/bin'
usrbin_execdir='${exec_prefix}/bin'
AC_SUBST([usrbin_execdir])
usrsbin_execdir='${_exec_prefix}/sbin'
usrsbin_execdir='${exec_prefix}/sbin'
AC_SUBST([usrsbin_execdir])
usrlib_execdir='${_exec_prefix}/'$libdirname
usrlib_execdir='${exec_prefix}/'$libdirname
AC_SUBST([usrlib_execdir])