OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 18-Sep-2002 10:22:27
Branch: HEAD Handle: 2002091809222700
Modified files:
openpkg-src/apache apache.spec
Log:
fix logic
Summary:
Revision Changes Path
1.87 +2 -2 openpkg-src/apache/apache.spec
____________________________________________________________________________
Index: openpkg-src/apache/apache.spec
============================================================
$ cvs diff -u -r1.86 -r1.87 apache.spec
--- openpkg-src/apache/apache.spec 18 Sep 2002 08:12:20 -0000 1.86
+++ openpkg-src/apache/apache.spec 18 Sep 2002 08:22:27 -0000 1.87
@@ -685,11 +685,11 @@
libs=""
%if "%{with_mod_auth_pam}" == "yes"
pam_incdir=`%{l_prefix}/etc/rc --query pam_incdir`
- if [ ".$pam_incdir" != "./usr/include" -o ".$pam_incdir" != "./include" ];
then
+ if [ ".$pam_incdir" != "./usr/include" -a ".$pam_incdir" != "./include" ];
then
cflags="$cflags -I$pam_incdir"
fi
pam_libdir=`%{l_prefix}/etc/rc --query pam_libdir`
- if [ ".$pam_libdir" != "./usr/lib" -o ".$pam_libdir" != "./lib" ]; then
+ if [ ".$pam_libdir" != "./usr/lib" -a ".$pam_libdir" != "./lib" ]; then
ldflags="$ldflags -L$pam_libdir"
fi
libs="$libs -lpam"
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]