Edit

IABSD.fr/ports/x11/ogle/patches/patch-scripts_ogle_in

Branch :

  • Show log

    Commit

  • Author : espie
    Date : 2010-04-11 09:08:38
    Hash : 45a32243
    Message : explicitly call /sbin/mkfifo for people who don't have /sbin in their PATH, as they're allowed to. requested by miod@

  • x11/ogle/patches/patch-scripts_ogle_in
  • $OpenBSD: patch-scripts_ogle_in,v 1.1 2010/04/11 09:08:38 espie Exp $
    --- scripts/ogle.in.orig	Sun Apr 11 11:06:44 2010
    +++ scripts/ogle.in	Sun Apr 11 11:07:15 2010
    @@ -5,7 +5,7 @@ create_pipe() { 
         if [ ! -p $1 ]; then
     	rm -f $1;
             # So any other user can start the program / rm the pipes
    -        mkfifo $1; chmod 666 $1;
    +        /sbin/mkfifo $1; chmod 666 $1;
         fi
         # chgrp dvd $1;
     }