From 9047c52827325ccf65ceadbc955a97f41e5c0381 Mon Sep 17 00:00:00 2001 From: benfry Date: Tue, 28 Sep 2004 03:46:29 +0000 Subject: [PATCH] moving this feller elsewhere --- .../build/macosx/dist/serial_setup.command | 51 ------------------- 1 file changed, 51 deletions(-) delete mode 100755 processing/build/macosx/dist/serial_setup.command diff --git a/processing/build/macosx/dist/serial_setup.command b/processing/build/macosx/dist/serial_setup.command deleted file mode 100755 index b5d93eba7..000000000 --- a/processing/build/macosx/dist/serial_setup.command +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh - -# originally fixperm.sh from rxtx-2.1_6/contrib -# with a couple additions from pathsetup.command from fink [fry] - -# A script to fix permissions for lock files on Mac OS X -# Contributed by Dmitry Markman -# Fri Aug 23 15:46:46 MDT 2002 - -echo "" -echo "" -echo "This command will take care of a couple system things" -echo "so that you can properly use the serial port to communicate" -echo "between hardware devices and processing." -echo "" -echo "If there are actually changes that need to be made, then" -echo "enter your password when prompted. The command uses sudo," -echo "and you'll need to have administrator access." -echo "" - -echo -n "Do you want to continue? [Y/n] " -read answer -answer=`echo $answer | sed 's/^[yY].*$/y/'` -if [ -z "$answer" -o "x$answer" = "xy" ]; then - curruser=`sudo id -p | grep 'login' | sed 's/login.//'` - - if [ ! -d /var/spool/uucp ] - then - sudo mkdir /var/spool/uucp - fi - - sudo chgrp uucp /var/spool/uucp - sudo chmod 775 /var/spool/uucp - - if [ ! `sudo niutil -readprop / /groups/uucp users | grep $curruser > /dev/null` ] - then - sudo niutil -mergeprop / /groups/uucp users $curruser - fi - - echo "Finished making changes, you should be all set" -else - echo "Ok, nevermind then." -fi - -echo "" -echo "" -echo " (All done... you can close this window now)" -echo "" -echo "" -echo "" -