File: Dont-rebuild-all-during-CI-tests.patch

package info (click to toggle)
postgresql-q3c 1.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,892 kB
  • sloc: sql: 13,151; ansic: 3,741; python: 110; perl: 104; makefile: 89; sh: 3
file content (21 lines) | stat: -rw-r--r-- 630 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Ole Streicher <olebole@debian.org>
Date: Mon, 7 Aug 2017 14:07:23 +0200
Subject: Don't rebuild all during CI tests

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index e800626..5423726 100644
--- a/Makefile
+++ b/Makefile
@@ -33,7 +33,7 @@ prepare: prepare.o q3cube.o q3c_poly.o
 gen_data: gen_data.c
 	$(CC) $< $(CPPFLAGS) $(MYBINLIBS) -o $@
 
-test: gen_data all
+test: gen_data
 	createdb q3c_test
 	psql q3c_test -c "CREATE TABLE test (ra double precision, dec double precision)"
 	psql q3c_test -c "CREATE TABLE test1 (ra double precision, dec double precision)"