mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-24 17:37:53 +02:00
2018-05-31 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression that broke the 'make rpm' target.
This commit is contained in:
parent
3215d07445
commit
e536ae7bfe
@ -17004,3 +17004,5 @@
|
|||||||
* Refactored table drops to use 'RDApplication::dropTable()'.
|
* Refactored table drops to use 'RDApplication::dropTable()'.
|
||||||
2018-05-31 Fred Gleason <fredg@paravelsystems.com>
|
2018-05-31 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Incremented the package version to 2.19.2vlog02.
|
* Incremented the package version to 2.19.2vlog02.
|
||||||
|
2018-05-31 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed a regression that broke the 'make rpm' target.
|
||||||
|
@ -100,8 +100,13 @@ fi
|
|||||||
AR_GCC_TARGET()
|
AR_GCC_TARGET()
|
||||||
AC_SUBST(VENDOR,$ar_gcc_distro)
|
AC_SUBST(VENDOR,$ar_gcc_distro)
|
||||||
AC_SUBST(ARCH,$ar_gcc_arch)
|
AC_SUBST(ARCH,$ar_gcc_arch)
|
||||||
LIB_PATH=$PREFIX/lib
|
if test $ar_gcc_arch = x86_64 ; then
|
||||||
AC_SUBST(RD_LIB_PATH,lib)
|
LIB_PATH=$PREFIX/lib64
|
||||||
|
AC_SUBST(RD_LIB_PATH,lib64)
|
||||||
|
else
|
||||||
|
LIB_PATH=$PREFIX/lib
|
||||||
|
AC_SUBST(RD_LIB_PATH,lib)
|
||||||
|
fi
|
||||||
|
|
||||||
#
|
#
|
||||||
# Determine Distro
|
# Determine Distro
|
||||||
|
@ -31,7 +31,8 @@ moc_%.cpp: %.h
|
|||||||
|
|
||||||
inst_prefix_dir=$(DESTDIR)
|
inst_prefix_dir=$(DESTDIR)
|
||||||
inst_lib_LTLIBRARIES = pam_rd.la
|
inst_lib_LTLIBRARIES = pam_rd.la
|
||||||
inst_libdir=$(prefix)/@RD_LIB_PATH@/security
|
##inst_libdir=$(prefix)/@RD_LIB_PATH@/security
|
||||||
|
inst_libdir=/@RD_LIB_PATH@/security
|
||||||
dist_pam_rd_la_SOURCES = pam_rd.cpp
|
dist_pam_rd_la_SOURCES = pam_rd.cpp
|
||||||
pam_rd_la_LDFLAGS = -module -shared -Xlinker -x -avoid-version -export-dynamic
|
pam_rd_la_LDFLAGS = -module -shared -Xlinker -x -avoid-version -export-dynamic
|
||||||
pam_rd_la_LIBADD = @LIB_RDLIBS@ -lpam @LIBVORBIS@
|
pam_rd_la_LIBADD = @LIB_RDLIBS@ -lpam @LIBVORBIS@
|
||||||
|
Loading…
x
Reference in New Issue
Block a user