diff options
author | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-19 22:25:12 +0000 |
---|---|---|
committer | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-19 22:25:12 +0000 |
commit | 0778de4542080551fbac5b6c540bd56634319092 (patch) | |
tree | dcb1cc44f6a6d5cd858b5ca3ffa0939ce74dce2f /Tools | |
parent | 72f248f4720389f7bcf1265364216852dfe66559 (diff) | |
download | edk2-platforms-0778de4542080551fbac5b6c540bd56634319092.tar.xz |
Make sure that the dll is executable.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@217 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/Source/TianoTools/CompressDll/build.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/Source/TianoTools/CompressDll/build.xml b/Tools/Source/TianoTools/CompressDll/build.xml index 210aa4e757..40df87f92e 100644 --- a/Tools/Source/TianoTools/CompressDll/build.xml +++ b/Tools/Source/TianoTools/CompressDll/build.xml @@ -92,6 +92,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. <syslibset libs="kernel32" unless="gcc"/>
</cc>
<copy file="${result}" tofile="${BIN_DIR}/CompressDll.dll"/>
+ <chmod file="${BIN_DIR}/CompressDll.dll" perm="ugo+x"/>
</target>
<target name="clean" depends="init">
<echo message="Removing Intermediate Files Only"/>
|