diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2002-06-27 04:04:54 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2002-06-27 04:04:54 +0000 |
commit | 09d18a79f0e11ad5dd90e3007f7ae688bc50693c (patch) | |
tree | ee50cca9c611775ad78ab619ace5dd6d5b1eb1ac /configure.in | |
parent | e509c5af6f70eb3cfd846004b82caaca24fd4a3b (diff) | |
download | pam-09d18a79f0e11ad5dd90e3007f7ae688bc50693c.tar.gz pam-09d18a79f0e11ad5dd90e3007f7ae688bc50693c.tar.bz2 pam-09d18a79f0e11ad5dd90e3007f7ae688bc50693c.zip |
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 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 69087a03..8da11c85 100644 --- a/configure.in +++ b/configure.in @@ -23,9 +23,11 @@ dnl AC_PREFIX_DEFAULT() dnl -dnl Useful info (believed to be portable) +dnl Useful info (believed to be portable) - in the future +dnl the LOCALSRCDIR and LOCALOBJDIRs may be different dnl LOCALSRCDIR=`/bin/pwd` ; AC_SUBST(LOCALSRCDIR) +LOCALOBJDIR=`/bin/pwd` ; AC_SUBST(LOCALOBJDIR) OS=`uname|sed -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` AC_SUBST(OS) |