diff options
author | Adrian Dudau <adrian.dudau@enea.com> | 2014-06-26 14:36:22 +0200 |
---|---|---|
committer | Adrian Dudau <adrian.dudau@enea.com> | 2014-06-26 15:32:53 +0200 |
commit | f4cf9fe05bb3f32fabea4e54dd92d368967a80da (patch) | |
tree | 487180fa9866985ea7b28e625651765d86f515c3 /meta/recipes-extended/pam/libpam/libpam-xtests.patch | |
download | poky-f4cf9fe05bb3f32fabea4e54dd92d368967a80da.tar.gz |
initial commit for Enea Linux 4.0
Migrated from the internal git server on the daisy-enea branch
Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Diffstat (limited to 'meta/recipes-extended/pam/libpam/libpam-xtests.patch')
-rw-r--r-- | meta/recipes-extended/pam/libpam/libpam-xtests.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-extended/pam/libpam/libpam-xtests.patch b/meta/recipes-extended/pam/libpam/libpam-xtests.patch new file mode 100644 index 0000000000..be687457f8 --- /dev/null +++ b/meta/recipes-extended/pam/libpam/libpam-xtests.patch | |||
@@ -0,0 +1,35 @@ | |||
1 | This patch is used to create a new sub package libpam-xtests to do more checks. | ||
2 | |||
3 | Upstream-Status: Pending | ||
4 | |||
5 | Signed-off-by: Kang Kai <kai.kang@windriver.com> | ||
6 | --- Linux-PAM-1.1.4/xtests/Makefile.am.orig 2011-07-19 17:00:09.619980001 +0800 | ||
7 | +++ Linux-PAM-1.1.4/xtests/Makefile.am 2011-07-19 16:54:00.229979998 +0800 | ||
8 | @@ -7,7 +7,7 @@ | ||
9 | AM_LDFLAGS = -L$(top_builddir)/libpam -lpam \ | ||
10 | -L$(top_builddir)/libpam_misc -lpam_misc | ||
11 | |||
12 | -CLEANFILES = *~ $(XTESTS) | ||
13 | +CLEANFILES = *~ | ||
14 | |||
15 | EXTRA_DIST = run-xtests.sh tst-pam_dispatch1.pamd tst-pam_dispatch2.pamd \ | ||
16 | tst-pam_dispatch3.pamd tst-pam_dispatch4.pamd \ | ||
17 | @@ -51,3 +51,18 @@ | ||
18 | |||
19 | xtests: $(XTESTS) run-xtests.sh | ||
20 | "$(srcdir)"/run-xtests.sh "$(srcdir)" ${XTESTS} ${NOSRCTESTS} | ||
21 | + | ||
22 | +all: $(XTESTS) | ||
23 | + | ||
24 | +install: install_xtests | ||
25 | + | ||
26 | +install_xtests: | ||
27 | + $(INSTALL) -d $(DESTDIR)$(pkgdatadir)/xtests | ||
28 | + for file in $(EXTRA_DIST) ; do \ | ||
29 | + $(INSTALL) $$file $(DESTDIR)$(pkgdatadir)/xtests ; \ | ||
30 | + done | ||
31 | + for file in $(XTESTS); do \ | ||
32 | + $(INSTALL) .libs/$$file $(DESTDIR)$(pkgdatadir)/xtests ; \ | ||
33 | + done | ||
34 | + | ||
35 | +.PHONY: all install_xtests | ||