Fix breakage in postgresql-test: pg_regress isn't a shell script anymore
This commit is contained in:
parent
2ee0978ca2
commit
1fbccd00b7
@ -17,10 +17,10 @@ srcdir := .
|
|||||||
check: installcheck-parallel
|
check: installcheck-parallel
|
||||||
|
|
||||||
installcheck: cleandirs
|
installcheck: cleandirs
|
||||||
$(SHELL) ./pg_regress --schedule=$(srcdir)/serial_schedule --multibyte=$(MULTIBYTE) --load-language=plpgsql
|
./pg_regress --schedule=$(srcdir)/serial_schedule --multibyte=$(MULTIBYTE) --load-language=plpgsql
|
||||||
|
|
||||||
installcheck-parallel: cleandirs
|
installcheck-parallel: cleandirs
|
||||||
$(SHELL) ./pg_regress --schedule=$(srcdir)/parallel_schedule --multibyte=$(MULTIBYTE) --load-language=plpgsql $(MAXCONNOPT)
|
./pg_regress --schedule=$(srcdir)/parallel_schedule --multibyte=$(MULTIBYTE) --load-language=plpgsql $(MAXCONNOPT)
|
||||||
|
|
||||||
# The tests command the server to write into testtablespace and results.
|
# The tests command the server to write into testtablespace and results.
|
||||||
# On a SELinux-enabled system this will fail unless we mark those directories
|
# On a SELinux-enabled system this will fail unless we mark those directories
|
||||||
@ -37,10 +37,10 @@ runtest: installcheck
|
|||||||
runtest-parallel: installcheck-parallel
|
runtest-parallel: installcheck-parallel
|
||||||
|
|
||||||
bigtest: cleandirs
|
bigtest: cleandirs
|
||||||
$(SHELL) ./pg_regress --schedule=$(srcdir)/serial_schedule --multibyte=$(MULTIBYTE) --load-language=plpgsql numeric_big
|
./pg_regress --schedule=$(srcdir)/serial_schedule --multibyte=$(MULTIBYTE) --load-language=plpgsql numeric_big
|
||||||
|
|
||||||
bigcheck: cleandirs
|
bigcheck: cleandirs
|
||||||
$(SHELL) ./pg_regress --schedule=$(srcdir)/parallel_schedule --multibyte=$(MULTIBYTE) --load-language=plpgsql $(MAXCONNOPT) numeric_big
|
./pg_regress --schedule=$(srcdir)/parallel_schedule --multibyte=$(MULTIBYTE) --load-language=plpgsql $(MAXCONNOPT) numeric_big
|
||||||
|
|
||||||
|
|
||||||
##
|
##
|
||||||
|
@ -81,7 +81,7 @@
|
|||||||
Summary: PostgreSQL client programs and libraries
|
Summary: PostgreSQL client programs and libraries
|
||||||
Name: postgresql
|
Name: postgresql
|
||||||
Version: 8.2.4
|
Version: 8.2.4
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
License: BSD
|
License: BSD
|
||||||
Group: Applications/Databases
|
Group: Applications/Databases
|
||||||
Url: http://www.postgresql.org/
|
Url: http://www.postgresql.org/
|
||||||
@ -534,7 +534,7 @@ install -d -m 700 $RPM_BUILD_ROOT/etc/sysconfig/pgsql
|
|||||||
install -m 0755 contrib/spi/autoinc.so $RPM_BUILD_ROOT%{_libdir}/pgsql/test/regress
|
install -m 0755 contrib/spi/autoinc.so $RPM_BUILD_ROOT%{_libdir}/pgsql/test/regress
|
||||||
pushd $RPM_BUILD_ROOT%{_libdir}/pgsql/test/regress
|
pushd $RPM_BUILD_ROOT%{_libdir}/pgsql/test/regress
|
||||||
strip *.so
|
strip *.so
|
||||||
rm -f GNUmakefile Makefile
|
rm -f GNUmakefile Makefile *.o
|
||||||
popd
|
popd
|
||||||
cp %{SOURCE4} $RPM_BUILD_ROOT%{_libdir}/pgsql/test/regress/Makefile
|
cp %{SOURCE4} $RPM_BUILD_ROOT%{_libdir}/pgsql/test/regress/Makefile
|
||||||
chmod 0644 $RPM_BUILD_ROOT%{_libdir}/pgsql/test/regress/Makefile
|
chmod 0644 $RPM_BUILD_ROOT%{_libdir}/pgsql/test/regress/Makefile
|
||||||
@ -822,6 +822,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jun 20 2007 Tom Lane <tgl@redhat.com> 8.2.4-2
|
||||||
|
- Fix oversight in postgresql-test makefile: pg_regress isn't a shell script
|
||||||
|
anymore. Per upstream bug 3398.
|
||||||
|
|
||||||
* Tue Apr 24 2007 Tom Lane <tgl@redhat.com> 8.2.4-1
|
* Tue Apr 24 2007 Tom Lane <tgl@redhat.com> 8.2.4-1
|
||||||
- Update to PostgreSQL 8.2.4 for CVE-2007-2138, data loss bugs
|
- Update to PostgreSQL 8.2.4 for CVE-2007-2138, data loss bugs
|
||||||
Resolves: #237682
|
Resolves: #237682
|
||||||
|
Loading…
Reference in New Issue
Block a user