diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-09-17 15:44:16 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-09-17 15:44:16 +0200 |
commit | a07239ba03f3196aab9b296e83b7f6c1d05763d8 (patch) | |
tree | 1e6115f5af7ec133c83ab413ddded57af6a2188b /lib | |
parent | f5b134fb4699fccce8e27023649b83d1cd77ff15 (diff) | |
download | samba-a07239ba03f3196aab9b296e83b7f6c1d05763d8.tar.gz samba-a07239ba03f3196aab9b296e83b7f6c1d05763d8.tar.bz2 samba-a07239ba03f3196aab9b296e83b7f6c1d05763d8.zip |
Fix finding of popt sources for systems that don't have popt.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/popt/libpopt.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/popt/libpopt.m4 b/lib/popt/libpopt.m4 index 79980d1d6b..cfa2eaad23 100644 --- a/lib/popt/libpopt.m4 +++ b/lib/popt/libpopt.m4 @@ -25,7 +25,7 @@ if test x"$INCLUDED_POPT" != x"no"; then dnl find the popt sources. This is meant to work both for dnl popt standalone builds, and builds of packages using popt poptdir="" - poptpaths="$srcdir $srcdir/lib/popt $srcdir/popt $srcdir/../popt" + poptpaths="$srcdir $srcdir/lib/popt $srcdir/popt $srcdir/../popt $srcdir/../lib/popt" for d in $poptpaths; do if test -f "$d/popt.c"; then poptdir="$d" |