Skip to content

Commit 2d61cc0

Browse files
author
Sandro Santilli
committed
Fix the "maintainer-clean" rule, and avoid maven downloads on clean
1 parent 655f142 commit 2d61cc0

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

jdbc/Makefile.in

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,15 @@ all: build
1818
pom.xml: pom.xml.in
1919
sed 's,%VERSION%,$(POSTGIS_LIB_VERSION),g' $< >$@
2020

21+
# nothing to do on clean
22+
# (better not invoke ant here, as it downloads the world
2123
clean:
22-
: nothing to do
2324

2425
build: pom.xml
25-
26-
build clean distclean check:
2726
$(ANT) $@
2827

28+
distclean: clean
29+
2930
maintainer-clean: distclean
3031
rm -f pom.xml
3132

0 commit comments

Comments
 (0)