Makefile.in | 11 ++++++----- VERSION.sh | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-)
New commits: commit 43de686b709728ddef6c475fe108b09069d5cbc8 Author: Noriko Hosoi nhosoi@redhat.com Date: Mon Aug 8 12:16:51 2016 -0700
bump version to 1.3.5.13
diff --git a/VERSION.sh b/VERSION.sh index ebcf385..f831270 100644 --- a/VERSION.sh +++ b/VERSION.sh @@ -10,7 +10,7 @@ vendor="389 Project" # PACKAGE_VERSION is constructed from these VERSION_MAJOR=1 VERSION_MINOR=3 -VERSION_MAINT=5.12 +VERSION_MAINT=5.13 # NOTE: VERSION_PREREL is automatically set for builds made out of a git tree VERSION_PREREL= VERSION_DATE=`date -u +%Y%m%d%H%M%S`
commit 632e5b660fff80566e8912bc6edb88e3ab28a4ea Author: William Brown firstyear@redhat.com Date: Mon Aug 8 13:56:02 2016 +1000
Ticket 48450 - Autotools components for ds_systemd_ask_password_acl
Bug Description: William forgot to add the Makefile.in to the commit. This was found in the rpm build because it does not run autoreconf to regenerate the Makefile.in, manifiesting as a missing file.
Fix Description: Commit Makefile.in
https://fedorahosted.org/389/ticket/48450
Author: wibrown
Review by: nhosoi@redhat.com
diff --git a/Makefile.in b/Makefile.in index 8109469..6788fe1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -2044,7 +2044,8 @@ sbin_SCRIPTS = ldap/admin/src/scripts/setup-ds.pl \ ldap/admin/src/scripts/dbmon.sh \ ldap/admin/src/scripts/ds_selinux_enabled \ ldap/admin/src/scripts/ds_selinux_port_query \ - wrappers/ldap-agent + wrappers/ds_systemd_ask_password_acl \ + wrappers/ldap-agent
bin_SCRIPTS = ldap/servers/slapd/tools/rsearch/scripts/dbgen.pl \ wrappers/dbscan \ @@ -10359,7 +10360,7 @@ distdir: $(DISTFILES) ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} ; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir - tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 @@ -10384,7 +10385,7 @@ dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 - shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz $(am__post_remove_distdir)
dist-zip: distdir @@ -10402,7 +10403,7 @@ dist dist-all: distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ - GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ + eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ @@ -10412,7 +10413,7 @@ distcheck: dist *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ - GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ + eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac
389-commits@lists.fedoraproject.org