Commit df26bc3c717a4ca109f495c1b625bd04b22577ad

Authored by Perry Werneck
1 parent f27bfea9

Melhorando empacotamento windows.

Showing 3 changed files with 4 additions and 2 deletions   Show diff stats
.gitignore
... ... @@ -27,6 +27,7 @@ aclocal.m4
27 27 configure
28 28 autom4te.cache
29 29 makegtkruntime.sh
  30 +copydeps.sh
30 31 revision
31 32 revision.m4
32 33 stamp-h1
... ...
configure.ac
... ... @@ -97,6 +97,7 @@ case "$host" in
97 97 LIBS="$LIBS -lws2_32 -lwtsapi32 -lintl -lcomdlg32"
98 98  
99 99 AC_CONFIG_FILES(win/makegtkruntime.sh)
  100 + AC_CONFIG_FILES(win/copydeps.sh)
100 101 AC_CONFIG_FILES(win/pw3270.nsi)
101 102 AC_CONFIG_FILES(src/pw3270/resources.rc)
102 103  
... ...
win/copydeps.sh.in
... ... @@ -2,8 +2,8 @@
2 2 myDIR=$(dirname $(readlink -f $0))
3 3  
4 4 # Updated by ./configure
5   -BASEDIR=/home/c1103788/project/pw3270/current
6   -prefix=/usr/x86_64-w64-mingw32/sys-root/mingw
  5 +BASEDIR=@BASEDIR@
  6 +prefix=@prefix@
7 7  
8 8 # Crio diretório temporário
9 9 TEMPDIR=$(mktemp -d)
... ...