mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Check errors in for loop
This commit is contained in:
parent
2078e384a3
commit
3ceae4795b
@ -6,7 +6,7 @@
|
|||||||
# Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
# Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
||||||
# Portions Copyright (c) 1994, Regents of the University of California
|
# Portions Copyright (c) 1994, Regents of the University of California
|
||||||
#
|
#
|
||||||
# $PostgreSQL: pgsql/src/test/regress/GNUmakefile,v 1.78 2009/08/26 22:24:43 petere Exp $
|
# $PostgreSQL: pgsql/src/test/regress/GNUmakefile,v 1.79 2009/10/26 21:11:22 petere Exp $
|
||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -100,7 +100,7 @@ regress_data_files = \
|
|||||||
install-tests: all install install-lib installdirs-tests
|
install-tests: all install install-lib installdirs-tests
|
||||||
$(MAKE) -C $(top_builddir)/contrib/spi install
|
$(MAKE) -C $(top_builddir)/contrib/spi install
|
||||||
for file in $(regress_data_files); do \
|
for file in $(regress_data_files); do \
|
||||||
$(INSTALL_DATA) $$file '$(DESTDIR)$(pkglibdir)/regress/'$$file; \
|
$(INSTALL_DATA) $$file '$(DESTDIR)$(pkglibdir)/regress/'$$file || exit; \
|
||||||
done
|
done
|
||||||
|
|
||||||
installdirs-tests: installdirs
|
installdirs-tests: installdirs
|
||||||
|
Loading…
Reference in New Issue
Block a user