diff options
author | jbj <devnull@localhost> | 2002-12-01 21:34:06 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2002-12-01 21:34:06 +0000 |
commit | 80b23366e79f229831efb6a590c90e2724d37927 (patch) | |
tree | e62a5951bd28e84579d84d988e3546808dcd8df3 /configure.ac | |
parent | 0efbbada0f3005d6f81a940ba7b06aef2703a50b (diff) | |
download | librpm-tizen-80b23366e79f229831efb6a590c90e2724d37927.tar.gz librpm-tizen-80b23366e79f229831efb6a590c90e2724d37927.tar.bz2 librpm-tizen-80b23366e79f229831efb6a590c90e2724d37927.zip |
- use usrlib_LTLIBRARIES to install directly in /usr/lib64 instead.
CVS patchset: 5911
CVS date: 2002/12/01 21:34:06
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 0155857a2..4fc8589e7 100644 --- a/configure.ac +++ b/configure.ac @@ -1105,13 +1105,12 @@ else ln -s ${srcdir}/autodeps/none ./find-requires fi -dnl XXX hack in explicit -L/lib64 -L/usr/lib64 on x86_64 -HACK_LIBTOOLPATH= -case "${build_cpu}" in -x86_64*) HACK_LIBTOOLPATH="-L/lib64 -L/usr/lib64" ;; +dnl XXX Choose /usr/lib or /usr/lib64 for library installs. +MARK64= +case "${target_cpu}" in +x86_64*) MARK64=64 ;; esac -AC_SUBST(HACK_LIBTOOLPATH) - +AC_SUBST(MARK64) dnl Determine the canonical arch-vendor-os for the build machine case "${build_cpu}" in |