summaryrefslogtreecommitdiff
path: root/Make.Rules.in
diff options
context:
space:
mode:
authorAndrew G. Morgan <morgan@kernel.org>2002-06-27 04:04:54 +0000
committerAndrew G. Morgan <morgan@kernel.org>2002-06-27 04:04:54 +0000
commit09d18a79f0e11ad5dd90e3007f7ae688bc50693c (patch)
treeee50cca9c611775ad78ab619ace5dd6d5b1eb1ac /Make.Rules.in
parente509c5af6f70eb3cfd846004b82caaca24fd4a3b (diff)
Relevant BUGIDs: 565470
Purpose of commit: bugfix Commit summary: --------------- It seems that configure was barfing on some packages because libpam_misc could not compile without also being linked to libpam.
Diffstat (limited to 'Make.Rules.in')
-rw-r--r--Make.Rules.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/Make.Rules.in b/Make.Rules.in
index d705bd0e..d7b87be2 100644
--- a/Make.Rules.in
+++ b/Make.Rules.in
@@ -22,6 +22,7 @@ infodir = @infodir@
includedir = @includedir@
absolute_srcdir = @LOCALSRCDIR@
+absolute_objdir = @LOCALOBJDIR@
# major and minor numbers of this release
MAJOR_REL=@LIBPAM_VERSION_MAJOR@
@@ -32,7 +33,7 @@ MINOR_REL=@LIBPAM_VERSION_MINOR@
# they generate.
HEADER_DIRS=-I./include -I$(absolute_srcdir)/libpam/include \
- -I$(absolute_srcdir) -I$(absolute_srcdir)/libpamc/include
+ -I$(absolute_objdir) -I$(absolute_srcdir)/libpamc/include
WARNINGS=@WARNINGS@
OS_CFLAGS=@OS_CFLAGS@
PIC=@PIC@