Commit 0b791f38bbc46636340343bb07e8578197a9dd97

Authored by Perry Werneck
1 parent b6c18837
Exists in v5.2

Adjustments in windows package.

Showing 2 changed files with 7 additions and 0 deletions   Show diff stats
win/makeruntime.sh.in
@@ -110,6 +110,7 @@ copy_dll() { @@ -110,6 +110,7 @@ copy_dll() {
110 wsock32 110 wsock32
111 winspool.drv 111 winspool.drv
112 ntdll 112 ntdll
  113 + winhttp
113 " 114 "
114 115
115 # Excluo DLLs do sistema 116 # Excluo DLLs do sistema
@@ -197,6 +197,9 @@ buildLibrary() @@ -197,6 +197,9 @@ buildLibrary()
197 export cache=${WORKDIR}/cache/${ARCH}/${1}.cache 197 export cache=${WORKDIR}/cache/${ARCH}/${1}.cache
198 198
199 cd ${WORKDIR}/sources/${1} 199 cd ${WORKDIR}/sources/${1}
  200 + if [ "$?" != "0" ]; then
  201 + failed "Can't change to ${WORKDIR}/sources/${1}"
  202 + fi
200 203
201 if [ -x ${PROJECTDIR}/win/configure.${1} ]; then 204 if [ -x ${PROJECTDIR}/win/configure.${1} ]; then
202 205
@@ -298,6 +301,9 @@ buildExtraPackage() @@ -298,6 +301,9 @@ buildExtraPackage()
298 export cache=${WORKDIR}/cache/${ARCH}/${1}.cache 301 export cache=${WORKDIR}/cache/${ARCH}/${1}.cache
299 302
300 cd ${WORKDIR}/sources/${1} 303 cd ${WORKDIR}/sources/${1}
  304 + if [ "$?" != "0" ]; then
  305 + failed "Can't change to ${WORKDIR}/sources/${1}"
  306 + fi
301 307
302 if [ -x ${PROJECTDIR}/win/configure.${1} ]; then 308 if [ -x ${PROJECTDIR}/win/configure.${1} ]; then
303 309