diff options
author | agc <agc@pkgsrc.org> | 1998-09-07 21:22:07 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1998-09-07 21:22:07 +0000 |
commit | 171f7c8508106673e277e12f3bf277535ba85db5 (patch) | |
tree | d613deebc0fc3a3f5703cec2fde0a3806ee7ea3b /lang | |
parent | e0c44a1251e40547bc50f041176dcfdd8a7bd9a9 (diff) | |
download | pkgsrc-171f7c8508106673e277e12f3bf277535ba85db5.tar.gz |
Patch Makefile.in so that any installation of the same version is done
over the top, without deleting existing files - the package collection
will deal with any collisions etc. Make sure this is not an
INTERACTIVE package.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/STk/patches/patch-aa | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lang/STk/patches/patch-aa b/lang/STk/patches/patch-aa new file mode 100644 index 00000000000..ee350858768 --- /dev/null +++ b/lang/STk/patches/patch-aa @@ -0,0 +1,16 @@ +$NetBSD: patch-aa,v 1.1 1998/09/07 21:22:07 agc Exp $ + +Don't delete any previous directory, just in case. +And *definitely* make it non-interactive. + +--- Makefile.in 1998/09/07 20:49:10 1.1 ++++ Makefile.in 1998/09/07 20:49:40 +@@ -178,7 +178,7 @@ + echo "*** This STk version ($(VERSION)) has already been installed "; \ + echo "*** on this machine. Should I clean this directory before "; \ + echo "*** starting installation of STk-$(VERSION)? [no] " ; \ +- read a; \ ++ a=n; \ + case $$a in \ + y*|Y*) echo "Deleting previous installation"; \ + /bin/rm -rf $(stkdir)/$(VERSION);; \ |