Commit 563d98d11ef408c731e0c88bf026f56e14495ee6
1 parent
ab423664
Exists in
master
and in
5 other branches
Corrigindo erro na criação do pacote 64 bits
Showing
2 changed files
with
9 additions
and
1 deletions
Show diff stats
pw3270.spec.in
... | ... | @@ -168,6 +168,14 @@ rm -rf $RPM_BUILD_ROOT |
168 | 168 | |
169 | 169 | #---[ Scripts ]------------------------------------------------------------------------------------------------------- |
170 | 170 | |
171 | +%post | |
172 | +/sbin/ldconfig | |
173 | +exit 0 | |
174 | + | |
175 | +%postun | |
176 | +/sbin/ldconfig | |
177 | +exit 0 | |
178 | + | |
171 | 179 | %post -n lib3270 |
172 | 180 | /sbin/ldconfig |
173 | 181 | exit 0 | ... | ... |
src/pw3270/Makefile.in
... | ... | @@ -67,7 +67,7 @@ DEPENDS=*.h common/*.h uiparser/*.h v3270/*.h $(GLOBAL_DEPS) |
67 | 67 | |
68 | 68 | VALGRIND=@VALGRIND@ |
69 | 69 | |
70 | -CFLAGS=@CFLAGS@ @GTK_CFLAGS@ -DDATAROOTDIR=\"$(datarootdir)\" -I../../src/include | |
70 | +CFLAGS=@CFLAGS@ @DLL_CFLAGS@ @GTK_CFLAGS@ -DDATAROOTDIR=\"$(datarootdir)\" -I../../src/include | |
71 | 71 | LIBS=@LIBS@ @GTK_LIBS@ |
72 | 72 | |
73 | 73 | #---[ Rules ]------------------------------------------------------------------ | ... | ... |