diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2000-12-03 23:42:17 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2000-12-03 23:42:17 +0000 |
commit | 2b076a176672ac74086540233a3d02ae057db10d (patch) | |
tree | c1f16be2458e09607433f77d3611bc88696694bb /examples | |
parent | 49ec7989a58fef13b7235116af8ae04bd736d421 (diff) | |
download | pam-2b076a176672ac74086540233a3d02ae057db10d.tar.gz pam-2b076a176672ac74086540233a3d02ae057db10d.tar.bz2 pam-2b076a176672ac74086540233a3d02ae057db10d.zip |
Relevant BUGIDs: 124187
Purpose of commit: bugfix
Commit summary:
---------------
examples/Makefile contained a bogus include path.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Makefile b/examples/Makefile index bd15ddf2..0e985c59 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -8,7 +8,7 @@ PROGS = blank xsh check_user SRCS = blank.c xsh.c check_user.c PROGSUID = -CFLAGS += -I../libpam_misc/inlcude -I../libpamc/include +CFLAGS += -I../libpam_misc/include -I../libpamc/include LOADLIBES = -L../libpam -L../libpamc -L../libpam_misc -lpam -lpam_misc |