From 79e88b0afb93ad661326ecfc1516441d86e6649f Mon Sep 17 00:00:00 2001 From: Omar Vega Ramos Date: Mon, 14 Aug 2017 00:50:08 -0500 Subject: arduino-1:1.6.8-1.parabola1: updating version --- pcr/arduino/arduino-fix-arguments.patch | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 pcr/arduino/arduino-fix-arguments.patch (limited to 'pcr/arduino/arduino-fix-arguments.patch') diff --git a/pcr/arduino/arduino-fix-arguments.patch b/pcr/arduino/arduino-fix-arguments.patch deleted file mode 100644 index 1cafeedde..000000000 --- a/pcr/arduino/arduino-fix-arguments.patch +++ /dev/null @@ -1,25 +0,0 @@ ---- a/arduino 2013-04-11 13:31:37.000000000 +0200 -+++ b/arduino 2014-01-12 15:18:46.159694131 +0100 -@@ -2,6 +2,16 @@ - - APPDIR="$(dirname -- "$(readlink -f -- "${0}")" )" - -+args=() -+for arg in "$@" -+do -+ if [[ "$arg" == -* ]]; then -+ args+=("$arg") -+ else -+ args+=("$(realpath "$arg")") -+ fi -+done -+ - cd "$APPDIR" - - for LIB in \ -@@ -19,4 +29,4 @@ - - export PATH="${APPDIR}/java/bin:${PATH}" - --java -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel processing.app.Base "$@" -+java -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel processing.app.Base "${args[@]}" -- cgit v1.2.3