[Wireshark-dev] win32-setup.sh fails to set executable bit for upx.exe - any ideas?

2007-11-29 Thread Ulf Lamping
Hi List! I've tired to find the cause of my problems with the upx compression of the U3/PortableApps packaging. The root cause is, that the upx.exe installed into wireshark-win32-libs doesn't get the executable bit set for cygwin - therefore the access denied I get (mentioned earlier).

Re: [Wireshark-dev] win32-setup.sh fails to set executable bit for upx.exe - any ideas?

2007-11-29 Thread Bill Meier
Ulf Lamping wrote: ... so I guess the find call doesn't find the upx.exe, so chmod isn't called. As a remark, AFAIK this is the first time for an exe needs this bit, so the find call might never have been worked correctly before. After a quick look, I've committed a change (SVN 23675)

Re: [Wireshark-dev] win32-setup.sh fails to set executable bit for upx.exe - any ideas?

2007-11-29 Thread Bill Meier
Ulf Lamping wrote: 1Verifying that the DLLs and EXEs in . are executable. 1++ /usr/bin/find . '(' -name '*.dll' -o -name vcredist_x86.exe ')' 1+ for i in '`/usr/bin/find . \( -name *\.dll -o -name *\.exe \)`' more dll's but