Changeset 7690e538aa8ad75a872bd0235f528d2d8f54675f

Show
Ignore:
Timestamp:
05/10/08 19:17:47 (3 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1210439867 +0300
git-parent:

[937e898593c4bf108c3b02d349b940e6667d7f83]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1210439818 +0300
Message:

Do not wander twice in the same subdir - fix distcheck

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Makefile.am

    r07cb75e r7690e53  
    88#  - src (libvlc) is nedeed by modules, mozilla and bindings 
    99#  - libs/* are needed by modules 
     10BASE_SUBDIRS = po src modules share doc test 
    1011EXTRA_SUBDIRS = m4 extras/package/ipkg \ 
    1112    bindings/python \ 
    1213    libs/loader libs/srtp \ 
    1314    projects/mozilla projects/activex 
    14 DIST_SUBDIRS = $(SUBDIRS) $(EXTRA_SUBDIRS) 
     15DIST_SUBDIRS = $(BASE_SUBDIRS) $(EXTRA_SUBDIRS) 
    1516 
    1617SUBDIRS = po src 
  • modules/Makefile.am

    r5d02805 r7690e53  
    1 SUBDIRS = \ 
     1BASE_SUBDIRS = \ 
    22    access \ 
    33    access_filter \ 
     
    2121    mux \ 
    2222    stream_out 
     23 
     24SUBDIRS = $(BASE_SUBDIRS) 
     25DIST_SUBDIRS = $(BASE_SUBDIRS) $(EXTRA_SUBDIRS) 
    2326if ENABLE_SOUT 
    2427SUBDIRS += access_output mux stream_out 
    2528endif 
    2629 
    27 DIST_SUBDIRS = $(SUBDIRS) $(EXTRA_SUBDIRS) 
    28  
    2930dist_noinst_SCRIPTS = genmf list.sh 
    3031dist_noinst_DATA = LIST 
  • modules/access/Modules.am

    r7849b24 r7690e53  
    44LIBTOOL=@LIBTOOL@ --tag=CC 
    55 
     6BASE_SUBDIRS = dvb mms cdda rtsp rtmp v4l2 vcd vcdx screen 
    67EXTRA_SUBDIRS = bda dshow 
    7 SUBDIRS = dvb mms cdda rtsp rtmp v4l2 vcd vcdx screen 
    8 DIST_SUBDIRS = $(EXTRA_SUBDIRS) $(SUBDIRS) 
     8SUBDIRS = $(BASE_SUBDIRS) 
     9DIST_SUBDIRS = $(BASE_SUBDIRS) $(EXTRA_SUBDIRS) 
    910 
    1011if HAVE_WIN32 
  • modules/misc/Modules.am

    rd4da0d5 r7690e53  
    1 SUBDIRS = dummy memcpy notify testsuite playlist osd xml probe 
    2 DIST_SUBDIRS = lua $(SUBDIRS) 
     1BASE_SUBDIRS = dummy memcpy notify testsuite playlist osd xml probe 
     2EXTRA_SUBDIRS = lua 
     3 
     4SUBDIRS = $(BASE_SUBDIRS) 
     5DIST_SUBDIRS = $(BASE_SUBDIRS) $(EXTRA_SUBDIRS) 
    36 
    47if BUILD_LUA