Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 090f21b

Browse files
committed
Make src/interfaces/libpq/test clean up after itself.
It failed to remove a .o file during "make clean", and it lacked a .gitignore file entirely.
1 parent 5b3a2ca commit 090f21b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/interfaces/libpq/test/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/uri-regress
2+
/regress.diff
3+
/regress.out

src/interfaces/libpq/test/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ installcheck: all
1818
$(PERL) $(top_srcdir)/$(subdir)/regress.pl
1919

2020
clean distclean maintainer-clean:
21-
rm -f $(PROGS)
21+
rm -f $(PROGS) *.o
2222
rm -f regress.out regress.diff

0 commit comments

Comments
 (0)