diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2011-09-19 09:50:17 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2011-09-19 09:50:17 +0300 |
commit | f0d4c09228206ca67ebc660baff0ff2e0316b105 (patch) | |
tree | 1c547634ee2223003c37edadd3080a9172d35b67 /set_soenv.in | |
parent | 1b428599a3f9c2c1ddfad1fce101232ebc2b1fe5 (diff) |
Bin weird leftover from OOo's native MinGW thing
I don't see the need to explicitly prefix PATH with /usr/bin in the
generated 'bootstrap' file. Surely /usr/bin is in PATH anyway for any
sane setup, and if there are other directories in front of it in PATH,
that is then on purpose.
Diffstat (limited to 'set_soenv.in')
-rwxr-xr-x | set_soenv.in | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/set_soenv.in b/set_soenv.in index aad44a076607..5fac10f54eb4 100755 --- a/set_soenv.in +++ b/set_soenv.in @@ -2124,8 +2124,6 @@ $bootfile = "bootstrap"; open( OUT, ">$bootfile" ) || die "Cannot open $bootfile: $!\n"; print OUT "#!/bin/sh\n"; -if ( $MINGW eq "yes" ) -{ print OUT 'PATH="/usr/bin:$PATH" : export PATH'."\n"; } close( OUT ) || print "Can't close $bootfile: $!"; system(`cat bootstrap.1 >> bootstrap`); system(`chmod +x bootstrap`); |