mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-31 10:30:33 +03:00 
			
		
		
		
	These comments incorrectly referred to shared_preload_libraries as being
required for the test to work.
Thinko in commit c68a183990.
Author: Bharath Rupireddy
Discussion: https://postgr.es/m/CALj2ACXpjFDiXf-L7AARQ4ppuxiDYSKZjyZb=wOa+cgg0zuWAw@mail.gmail.com
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			621 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			621 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # contrib/basic_archive/Makefile
 | |
| 
 | |
| MODULES = basic_archive
 | |
| PGFILEDESC = "basic_archive - basic archive module"
 | |
| 
 | |
| REGRESS = basic_archive
 | |
| REGRESS_OPTS = --temp-config $(top_srcdir)/contrib/basic_archive/basic_archive.conf
 | |
| 
 | |
| # Disabled because these tests require special configuration, which
 | |
| # typical installcheck users do not have (e.g. buildfarm clients).
 | |
| NO_INSTALLCHECK = 1
 | |
| 
 | |
| ifdef USE_PGXS
 | |
| PG_CONFIG = pg_config
 | |
| PGXS := $(shell $(PG_CONFIG) --pgxs)
 | |
| include $(PGXS)
 | |
| else
 | |
| subdir = contrib/basic_archive
 | |
| top_builddir = ../..
 | |
| include $(top_builddir)/src/Makefile.global
 | |
| include $(top_srcdir)/contrib/contrib-global.mk
 | |
| endif
 |