Commit 10b7593a6048d0c126ac18ef71cc8c5f3e3e5320

Authored by Perry Werneck
1 parent f89d68c2

Corrigindo identificador de major e minor no spec.

Showing 2 changed files with 2 additions and 2 deletions   Show diff stats
configure.ac
... ... @@ -870,6 +870,7 @@ if test "$app_cv_registry" == "yes"; then
870 870 fi
871 871  
872 872 AC_SUBST(MAJOR_VERSION,"$(echo $PACKAGE_VERSION | cut -d. -f1)")
  873 +AC_SUBST(MINOR_VERSION,"$(echo $PACKAGE_VERSION | cut -d. -f2)")
873 874 AC_SUBST(HOST_CC)
874 875 AC_SUBST(EXEEXT)
875 876 AC_SUBST(DLLPREFIX)
... ...
pw3270.spec.in
... ... @@ -16,8 +16,7 @@
16 16 # Please submit bugfixes or comments via http://bugs.opensuse.org/
17 17 #
18 18  
19   -%define LIBVERSION %(echo @PACKAGE_VERSION@ | sed -e "s@.@_@g")
20   -#5_1
  19 +%define LIBVERSION @MAJOR_VERSION@_@MINOR_VERSION@
21 20  
22 21 #
23 22 # References:
... ...