]> git.sesse.net Git - vlc/commitdiff
modules/genmf: Use printf instead of echo -n to prevent some weird shell/Makefile...
authorPierre d'Herbemont <pdherbemont@videolan.org>
Fri, 1 Feb 2008 17:50:15 +0000 (17:50 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Fri, 1 Feb 2008 17:50:15 +0000 (17:50 +0000)
modules/genmf

index 94e24c0c5eb33d8fb241f98786bafc01f5302cf6..156b8862b69f044e87266ad34c1f45c471438e7c 100755 (executable)
@@ -95,7 +95,7 @@ mostlyclean-local:
 install-exec-local: all-modules
        @if test -z "\$(libvlc_LTLIBRARIES)"; then \
          z=\$\$(\$(VLC_CONFIG) --list plugin); \
-         m=\`for mod in \$(mods); do case "\$\$z " in *\ \$\${mod}\ *) echo -n " lib\$\${mod}_plugin.la" ;; esac; done\` ; \
+         m=\`for mod in \$(mods); do case "\$\$z " in *\ \$\${mod}\ *) printf " lib\$\${mod}_plugin.la" ;; esac; done\` ; \
          test -z "\$\$m" || \
            \$(MAKE) \$(AM_MAKEFLAGS) libvlc_LTLIBRARIES="\$\$m" install-libvlcLTLIBRARIES || exit \$\$? ; \
        fi
@@ -103,7 +103,7 @@ install-exec-local: all-modules
 uninstall-local:
        @if test -z "\$(libvlc_LTLIBRARIES)"; then \
          z=\$\$(\$(VLC_CONFIG) --list plugin); \
-         m=\`for mod in \$(mods); do case "\$\$z " in *\ \$\${mod}\ *) echo -n " lib\$\${mod}_plugin.la" ;; esac; done\` ; \
+         m=\`for mod in \$(mods); do case "\$\$z " in *\ \$\${mod}\ *) printf " lib\$\${mod}_plugin.la" ;; esac; done\` ; \
          test -z "\$\$m" || \
            \$(MAKE) \$(AM_MAKEFLAGS) libvlc_LTLIBRARIES="\$\$m" uninstall-libvlcLTLIBRARIES || exit \$\$?; \
        fi