]> git.sesse.net Git - vlc/commitdiff
* bootstrap: Fixed the "clean" rule in module subdirectories.
authorSam Hocevar <sam@videolan.org>
Fri, 24 Oct 2003 11:53:59 +0000 (11:53 +0000)
committerSam Hocevar <sam@videolan.org>
Fri, 24 Oct 2003 11:53:59 +0000 (11:53 +0000)
bootstrap

index d2bc5cfbe08dce8e9bef219f318dba2586260be5..0159f9d66bec0fc99920b42b5c4710d3619adfd5 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -1,7 +1,7 @@
 #! /bin/sh
 
 ##  bootstrap file for the VLC media player
-##  $Id: bootstrap,v 1.74 2003/10/23 15:30:22 sam Exp $
+##  $Id: bootstrap,v 1.75 2003/10/24 11:53:59 sam Exp $
 ##
 ##  Authors: Sam Hocevar <sam@zoy.org>
 
@@ -216,17 +216,17 @@ EOF
 #   work properly with any automake version I tested.
     cat >> modules/${dir}/Makefile.am << EOF
 # The ${mod} plugin
-clean: clean-${mod}
-all: all-${mod}
 
 EOF
     if [ "${NODIST}" != "#" ]; then cat >> modules/${dir}/Makefile.am << EOF
+clean: clean-${mod}
 clean-${mod}:
        -test -z "\$(nodist_SOURCES_${mod})" || rm -f \$(nodist_SOURCES_${mod})
 
 EOF
     fi
     cat >> modules/${dir}/Makefile.am << EOF
+all: all-${mod}
 all-${mod}:
 if BUILD_MOZILLA
        @set fnord \$\$MAKEFLAGS; amf=\$\$2; \\