Changeset 5b85463a3602cd055425c8ef0854a8ca7bee13f4
- Timestamp:
- 17/08/05 13:58:44
(3 years ago)
- Author:
- Christophe Massiot <massiot@videolan.org>
- git-committer:
- Christophe Massiot <massiot@videolan.org> 1124279924 +0000
- git-parent:
[975a14d3ca1f8d006b0a52ead0c8c15264ccd00b]
- git-author:
- Christophe Massiot <massiot@videolan.org> 1124279924 +0000
- Message:
- Makefile.am: MacOS X fix when srcdir != builddir.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r8f332fe |
r5b85463 |
|
| 609 | 609 | "$(top_builddir)/VLC-release.app/Contents/MacOS/modules" ; \ |
|---|
| 610 | 610 | fi ; done |
|---|
| 611 | | if test -d $(top_builddir)/extras/contrib/vlc-lib; then \ |
|---|
| | 611 | if test -d $(srcdir)/extras/contrib/vlc-lib; then \ |
|---|
| 612 | 612 | mkdir -p $(top_builddir)/VLC-release.app/Contents/MacOS/lib ; \ |
|---|
| 613 | | for i in $(top_builddir)/extras/contrib/vlc-lib/*.dylib ; do \ |
|---|
| | 613 | for i in $(srcdir)/extras/contrib/vlc-lib/*.dylib ; do \ |
|---|
| 614 | 614 | $(INSTALL) -m 644 $${i} $(top_builddir)/VLC-release.app/Contents/MacOS/lib/vlc_`basename $${i}` ; \ |
|---|
| 615 | 615 | done ; \ |
|---|
| … | … | |
| 723 | 723 | "$(top_builddir)/VLC.app/Contents/MacOS/modules" ; \ |
|---|
| 724 | 724 | fi ; done |
|---|
| 725 | | if test -d $(top_builddir)/extras/contrib/vlc-lib; then \ |
|---|
| | 725 | if test -d $(srcdir)/extras/contrib/vlc-lib; then \ |
|---|
| 726 | 726 | mkdir -p $(top_builddir)/VLC.app/Contents/MacOS/lib ; \ |
|---|
| 727 | | for i in $(top_builddir)/extras/contrib/vlc-lib/*.dylib ; do \ |
|---|
| | 727 | for i in $(srcdir)/extras/contrib/vlc-lib/*.dylib ; do \ |
|---|
| 728 | 728 | ln -sfn `pwd`/$${i} $(top_builddir)/VLC.app/Contents/MacOS/lib/vlc_`basename $${i}` ; \ |
|---|
| 729 | 729 | done ; \ |
|---|