diff options
Diffstat (limited to 'databases/postgis/files/patch-GNUmakefile')
-rw-r--r-- | databases/postgis/files/patch-GNUmakefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/databases/postgis/files/patch-GNUmakefile b/databases/postgis/files/patch-GNUmakefile new file mode 100644 index 000000000000..e2125b8c00e0 --- /dev/null +++ b/databases/postgis/files/patch-GNUmakefile @@ -0,0 +1,30 @@ +--- GNUmakefile Mon Dec 19 18:23:23 2005 ++++ GNUmakefile Wed Dec 28 15:38:36 2005 +@@ -4,9 +4,15 @@ + # + #----------------------------------------------------- + +-all: Makefile.config liblwgeom loaderdumper utils ++all: Makefile.config liblwgeom loaderdumper utils ++ifneq ($(WITH-DOC),) ++ $(MAKE) -C doc ++endif + +-install: all liblwgeom-install loaderdumper-install ++install: all liblwgeom-install loaderdumper-install utils-install ++ifneq ($(WITH-DOC),) ++ $(MAKE) -C doc install ++endif + + uninstall: liblwgeom-uninstall loaderdumper-uninstall docs-uninstall + +@@ -74,6 +80,9 @@ + + utils: + $(MAKE) -C utils ++ ++utils-install: ++ $(MAKE) -C utils install + + configure: configure.in + ./autogen.sh |