File tree 1 file changed +10
-6
lines changed
1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,16 @@ OBJS = \
18
18
19
19
all : isolationtester$(X ) pg_isolation_regress$(X )
20
20
21
- # Though we don't install these binaries, build them during installation
22
- # (including temp-install). Otherwise, "make -j check-world" and "make -j
23
- # installcheck-world" would spawn multiple, concurrent builds in this
24
- # directory. Later builds would overwrite files while earlier builds are
25
- # reading them, causing occasional failures.
26
- install : | all
21
+ install : all installdirs
22
+ $(INSTALL_PROGRAM ) pg_isolation_regress$(X ) ' $(DESTDIR)$(pgxsdir)/$(subdir)/pg_isolation_regress$(X)'
23
+ $(INSTALL_PROGRAM ) isolationtester$(X ) ' $(DESTDIR)$(pgxsdir)/$(subdir)/isolationtester$(X)'
24
+
25
+ installdirs :
26
+ $(MKDIR_P ) ' $(DESTDIR)$(pgxsdir)/$(subdir)'
27
+
28
+ uninstall :
29
+ rm -f ' $(DESTDIR)$(pgxsdir)/$(subdir)/pg_isolation_regress$(X)'
30
+ rm -f ' $(DESTDIR)$(pgxsdir)/$(subdir)/isolationtester$(X)'
27
31
28
32
submake-regress :
29
33
$(MAKE ) -C $(top_builddir ) /src/test/regress pg_regress.o
You can’t perform that action at this time.
0 commit comments