diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-11-16 16:21:55 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-11-16 16:21:55 +0000 |
commit | 0f5c1b251d3dad6bb2d051d2de379e4cb1543fa5 (patch) | |
tree | fb728ff345b4b89625c212936734c5070907d442 | |
parent | a5046ad13abc05b453822464cf41c95f55df0867 (diff) | |
download | postgresql-0f5c1b251d3dad6bb2d051d2de379e4cb1543fa5.tar.gz postgresql-0f5c1b251d3dad6bb2d051d2de379e4cb1543fa5.zip |
Clean files after installing, since those files will most likely be root
owned, which can be annoying.
-rw-r--r-- | src/interfaces/perl5/GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/perl5/GNUmakefile b/src/interfaces/perl5/GNUmakefile index 75333c458a4..d6be1c1e9b9 100644 --- a/src/interfaces/perl5/GNUmakefile +++ b/src/interfaces/perl5/GNUmakefile @@ -4,7 +4,7 @@ # Makefile according to its own ideas and then invoke the rules from # that file. # -# $Header: /cvsroot/pgsql/src/interfaces/perl5/Attic/GNUmakefile,v 1.3 2000/10/24 16:59:59 tgl Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/perl5/Attic/GNUmakefile,v 1.4 2000/11/16 16:21:55 petere Exp $ subdir = src/interfaces/perl5 top_builddir = ../../.. @@ -39,7 +39,7 @@ install: Makefile $(MAKE) -f Makefile all -@if [ -w "`$(MAKE) --quiet -f Makefile echo-installdir`" ]; then \ $(MAKE) -f Makefile install; \ - rm -f Makefile; \ + $(MAKE) clean; \ else \ echo "*****" ;\ echo "* Skipping the installation of the Perl module for lack of permissions."; \ |