Changeset 6b7b39323d05080cce14676d046db9fd2f0925d2
- Timestamp:
- 01/05/08 22:00:46
(7 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1209672046 +0300
- git-parent:
[5c1474d6324e6b2d250ac773231a12e3f96987e2]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1209672046 +0300
- Message:
dist_ is not needed for HEADERS
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r5c1474d |
r6b7b393 |
|
| 23 | 23 | pluginsincludedir = $(pkgincludedir)/plugins |
|---|
| 24 | 24 | |
|---|
| 25 | | dist_pkginclude_HEADERS = \ |
|---|
| | 25 | pkginclude_HEADERS = \ |
|---|
| 26 | 26 | ../include/vlc/vlc.h \ |
|---|
| 27 | 27 | ../include/vlc/common.h \ |
|---|
| … | … | |
| 479 | 479 | |
|---|
| 480 | 480 | check-local: |
|---|
| 481 | | for h in `echo $(dist_pkginclude_HEADERS) $(pkginclude_HEADERS) | sed -e s,\.\./include/,,g`; \ |
|---|
| | 481 | for h in `echo $(pkginclude_HEADERS) | sed -e s,\.\./include/,,g`; \ |
|---|
| 482 | 482 | do \ |
|---|
| 483 | 483 | echo grep - "#include <$$h>" $(srcdir)/test/headers.c ; \ |
|---|
| … | … | |
| 488 | 488 | fi ; \ |
|---|
| 489 | 489 | done |
|---|
| 490 | | $(srcdir)/check_headers $(dist_pkginclude_HEADERS) $(pkginclude_HEADERS) |
|---|
| | 490 | $(srcdir)/check_headers $(pkginclude_HEADERS) |
|---|
| 491 | 491 | # Hmm, this test should not fail: |
|---|
| 492 | 492 | -$(srcdir)/check_headers $(pluginsinclude_HEADERS) |
|---|