emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/admin/quick-install-emacs


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/admin/quick-install-emacs
Date: Wed, 02 Mar 2005 04:26:44 -0500

Index: emacs/admin/quick-install-emacs
diff -c emacs/admin/quick-install-emacs:1.12 
emacs/admin/quick-install-emacs:1.13
*** emacs/admin/quick-install-emacs:1.12        Wed Oct  1 01:38:40 2003
--- emacs/admin/quick-install-emacs     Wed Mar  2 09:26:43 2005
***************
*** 19,33 ****
  
  me="`basename $0`"
  
! # Install commands (these commands are also expected to understand the
! # GNU -v (--verbose) option)
  LINK='cp -lf'
  COPY='cp -f'
  REMOVE='rm -r'
  
  # Used to execute commands once once we create them
  EXEC='sh'
- MKDIR='mkdir --verbose -p'
  
  NAWK=/usr/bin/nawk
  
--- 19,34 ----
  
  me="`basename $0`"
  
! # Install commands (if the user specifies the `--verbose' option, it is
! # passed to these commands, so that feature only works if these commands
! # implement it too)
  LINK='cp -lf'
  COPY='cp -f'
  REMOVE='rm -r'
+ MKDIR='mkdir -p'
  
  # Used to execute commands once once we create them
  EXEC='sh'
  
  NAWK=/usr/bin/nawk
  
***************
*** 157,163 ****
  maybe_mkdir ()
  {
    if ! test -d "$1"; then
!     $MKDIR "$1" 2>&1 | sed "s/^mkdir:/$me:/" 1>&2
    fi
  }
  
--- 158,164 ----
  maybe_mkdir ()
  {
    if ! test -d "$1"; then
!     $MKDIR $VERBOSE "$1" 2>&1 | sed "s/^mkdir:/$me:/" 1>&2
    fi
  }
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]