This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 205754
Collapse All | Expand All

(-)o.n.bootstrap/launcher/unix/nbexec.orig (+12 lines)
Lines 133-138 Link Here
133
            shift;
133
            shift;
134
            ;;
134
            ;;
135
        -J*) jopt=`expr "X-$1" : 'X--J\(.*\)'`; jargs="$jargs '$jopt'";;
135
        -J*) jopt=`expr "X-$1" : 'X--J\(.*\)'`; jargs="$jargs '$jopt'";;
136
        -E*=*)
137
            exp=`expr "X-$1" : 'X--E\(.*\)'`
138
            if [ -n "$exp" ]; then
139
                eval export $exp
140
            fi
141
            ;;
142
        -E|-env|--env)
143
            shift
144
            if [ $# -gt 0 ] ; then
145
                eval export $1
146
            fi
147
            ;;
136
        *) args="$args \"$1\"" ;;
148
        *) args="$args \"$1\"" ;;
137
    esac
149
    esac
138
    shift
150
    shift

Return to bug 205754