Changeset 0001dd31afce7dea20762c2e3a683ee05e936c16
- Timestamp:
- 07/17/03 16:54:26
(5 years ago)
- Author:
- Sam Hocevar <sam@videolan.org>
- git-committer:
- Sam Hocevar <sam@videolan.org> 1058453666 +0000
- git-parent:
[0878dc57d541b93055dd3c1e14a26b16acf563bc]
- git-author:
- Sam Hocevar <sam@videolan.org> 1058453666 +0000
- Message:
- configure.ac vlc-config.in.in: Oops, vlc-config needs top_builddir, not
top_srcdir.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r8bbbcc3 |
r0001dd3 |
|
| 1 | 1 | dnl Autoconf settings for vlc |
|---|
| 2 | | dnl $Id: configure.ac,v 1.32 2003/07/17 12:06:10 sam Exp $ |
|---|
| | 2 | dnl $Id: configure.ac,v 1.33 2003/07/17 14:54:26 sam Exp $ |
|---|
| 3 | 3 | |
|---|
| 4 | 4 | AC_INIT(vlc,0.6.0) |
|---|
| … | … | |
| 3194 | 3194 | dnl Handle substvars that use $(top_srcdir) |
|---|
| 3195 | 3195 | dnl |
|---|
| 3196 | | VLC_CONFIG="top_srcdir=\"\$(top_srcdir)\" \$(top_builddir)/vlc-config" |
|---|
| | 3196 | VLC_CONFIG="top_builddir=\"\$(top_builddir)\" \$(top_builddir)/vlc-config" |
|---|
| 3197 | 3197 | AC_SUBST(VLC_CONFIG) |
|---|
| 3198 | 3198 | CPPFLAGS_save="${CPPFLAGS_save} -I\$(top_srcdir)/include" |
|---|
| r8bbbcc3 |
r0001dd3 |
|
| 81 | 81 | includes="-I@includedir@" |
|---|
| 82 | 82 | fi |
|---|
| 83 | | if test "${top_srcdir}" != ""; then |
|---|
| 84 | | top_srcdir="${top_srcdir}/" |
|---|
| | 83 | if test "${top_builddir}" != ""; then |
|---|
| | 84 | top_builddir="${top_builddir}/" |
|---|
| 85 | 85 | fi |
|---|
| 86 | 86 | cppflags="${includes}" |
|---|
| … | … | |
| 247 | 247 | register_targets "${module}" |
|---|
| 248 | 248 | done |
|---|
| 249 | | for target in `echo "${list}"`; do printf "${top_srcdir}modules/${target}_plugin "; done |
|---|
| | 249 | for target in `echo "${list}"`; do printf "${top_builddir}modules/${target}_plugin "; done |
|---|
| 250 | 250 | printf '\n' |
|---|
| 251 | 251 | fi |
|---|
| … | … | |
| 255 | 255 | done |
|---|
| 256 | 256 | if test "${echo_pic}" = yes; then |
|---|
| 257 | | for target in `echo "${list}"`; do printf "${top_srcdir}modules/${target}_pic.a "; done |
|---|
| | 257 | for target in `echo "${list}"`; do printf "${top_builddir}modules/${target}_pic.a "; done |
|---|
| 258 | 258 | else |
|---|
| 259 | | for target in `echo "${list}"`; do printf "${top_srcdir}modules/${target}.a "; done |
|---|
| | 259 | for target in `echo "${list}"`; do printf "${top_builddir}modules/${target}.a "; done |
|---|
| 260 | 260 | fi |
|---|
| 261 | 261 | printf '\n' |
|---|
| … | … | |
| 289 | 289 | done |
|---|
| 290 | 290 | if test "${echo_pic}" = yes; then |
|---|
| 291 | | for target in `echo "${list}"`; do printf "${top_srcdir}modules/${target}_pic.a "; done |
|---|
| | 291 | for target in `echo "${list}"`; do printf "${top_builddir}modules/${target}_pic.a "; done |
|---|
| 292 | 292 | else |
|---|
| 293 | | for target in `echo "${list}"`; do printf "${top_srcdir}modules/${target}.a "; done |
|---|
| | 293 | for target in `echo "${list}"`; do printf "${top_builddir}modules/${target}.a "; done |
|---|
| 294 | 294 | fi |
|---|
| 295 | 295 | fi |
|---|