Changeset dceb44290badf3c971a0d6ef87999d9e041623b7
- Timestamp:
- 07/01/03 20:28:43
(5 years ago)
- Author:
- Sam Hocevar <sam@videolan.org>
- git-committer:
- Sam Hocevar <sam@videolan.org> 1057084123 +0000
- git-parent:
[da38547a70b6865a6280e2c48415fccaaca08f31]
- git-author:
- Sam Hocevar <sam@videolan.org> 1057084123 +0000
- Message:
- vlc-config.in.in: Reverted one of my first Solaris workarounds rendered
obsolescent by the latest ones.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| re2d69c7 |
rdceb442 |
|
| 371 | 371 | install-exec-local: |
|---|
| 372 | 372 | for i in "" `$(VLC_CONFIG) --target plugin` ; do if test -n "$$i" ; then \ |
|---|
| 373 | | $(INSTALL) -m 755 "modules/$$i$(LIBEXT)" "$(DESTDIR)$(libdir)/vlc/`echo $$i | cut -f1 -d/`" ; \ |
|---|
| | 373 | $(INSTALL) -m 755 "$$i$(LIBEXT)" "$(DESTDIR)$(libdir)/vlc/`echo $$i | cut -f1 -d/`" ; \ |
|---|
| 374 | 374 | fi ; done |
|---|
| 375 | 375 | for i in "" `$(VLC_CONFIG) --target builtin` `$(VLC_CONFIG) --target builtin pic` ; do if test -n "$$i" ; then \ |
|---|
| 376 | | $(INSTALL) -m 644 "modules/$$i" "$(DESTDIR)$(libdir)/vlc" ; \ |
|---|
| | 376 | $(INSTALL) -m 644 "$$i" "$(DESTDIR)$(libdir)/vlc" ; \ |
|---|
| 377 | 377 | fi ; done |
|---|
| 378 | 378 | for i in "" $(ALIASES) ; do if test -n "$$i" ; then \ |
|---|
| … | … | |
| 393 | 393 | $(INSTALL) -d $(srcdir)/VLC.app/Contents/MacOS/modules |
|---|
| 394 | 394 | for i in "" `$(VLC_CONFIG) --target plugin` ; do \ |
|---|
| 395 | | if test -n "$$i" ; then $(INSTALL) "$(srcdir)/modules/$$i$(LIBEXT)" \ |
|---|
| | 395 | if test -n "$$i" ; then $(INSTALL) "$(srcdir)/$$i$(LIBEXT)" \ |
|---|
| 396 | 396 | "$(srcdir)/VLC.app/Contents/MacOS/modules" ; \ |
|---|
| 397 | 397 | fi ; done |
|---|
| … | … | |
| 448 | 448 | for i in "" `$(VLC_CONFIG) --target plugin` ; do \ |
|---|
| 449 | 449 | if test -n "$$i" ; then \ |
|---|
| 450 | | $(INSTALL) "$(srcdir)/modules/$$i$(LIBEXT)" "$(srcdir)/tmp/plugins/" ; \ |
|---|
| | 450 | $(INSTALL) "$(srcdir)/$$i$(LIBEXT)" "$(srcdir)/tmp/plugins/" ; \ |
|---|
| 451 | 451 | fi ; done |
|---|
| 452 | 452 | |
|---|
| r1fb282c |
rdceb442 |
|
| 244 | 244 | register_targets "${module}" |
|---|
| 245 | 245 | done |
|---|
| 246 | | for target in `echo ${list}`; do printf "${target}_plugin "; done |
|---|
| | 246 | for target in `echo ${list}`; do printf "modules/${target}_plugin "; done |
|---|
| 247 | 247 | printf '\n' |
|---|
| 248 | 248 | fi |
|---|
| … | … | |
| 252 | 252 | done |
|---|
| 253 | 253 | if test "${echo_pic}"; then |
|---|
| 254 | | for target in `echo ${list}`; do printf "${target}_pic.a "; done |
|---|
| | 254 | for target in `echo ${list}`; do printf "modules/${target}_pic.a "; done |
|---|
| 255 | 255 | else |
|---|
| 256 | | for target in `echo ${list}`; do printf "${target}.a "; done |
|---|
| | 256 | for target in `echo ${list}`; do printf "modules/${target}.a "; done |
|---|
| 257 | 257 | fi |
|---|
| 258 | 258 | printf '\n' |
|---|
| … | … | |
| 286 | 286 | done |
|---|
| 287 | 287 | if test "${echo_pic}"; then |
|---|
| 288 | | for target in `echo ${list}`; do printf "${target}_pic.a "; done |
|---|
| | 288 | for target in `echo ${list}`; do printf "modules/${target}_pic.a "; done |
|---|
| 289 | 289 | else |
|---|
| 290 | | for target in `echo ${list}`; do printf "${target}.a "; done |
|---|
| | 290 | for target in `echo ${list}`; do printf "modules/${target}.a "; done |
|---|
| 291 | 291 | fi |
|---|
| 292 | 292 | printf '\n' |
|---|