> #!/bin/bash
> pushd /download/org/gnu/emacs/emacs &&\
>  cvs update -dPAC &&\
>  pushd /download/org/gnu/emacs/emacs-build &&\
>  make clean &&\
>  ../emacs/configure --prefix=$GNU_EMACS &&\
>  make -j8 &&\
>  pushd lisp &&\
>  make recompile EMACS=../src/emacs &&\
>  popd &&\
>  make install &&\
>  popd

What if these things are within an if or while or case or ...:

Do you do

   if foo then
       pushd toto &&\
 cvsupdate ...
   fi

or do you do

   if foo then
       pushd toto &&\
        cvsupdate ...
   fi


-- Stefan


_______________________________________________
Emacs-pretest-bug mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug

Reply via email to