diff options
author | James FitzGibbon <jfitz@FreeBSD.org> | 1996-10-04 00:38:38 +0000 |
---|---|---|
committer | James FitzGibbon <jfitz@FreeBSD.org> | 1996-10-04 00:38:38 +0000 |
commit | a87698a36aa039560b51c2cb3fd344ed23d11c16 (patch) | |
tree | 6d88b97901cd5aa15844b6b98800514e5b12e44c /databases/msql3/files/patch-aa | |
parent | Reorganize official patches (diff) |
Use INSTALL_ aliases in post-install:
Create rc.d-style local startup script
Fix omissions in pkg/PLIST
Remove erroneous PREFIX in Makefile (and modify PLIST to match)
Remove IS_INTERACTIVE (assume installation will run as root)
Use union diffs instead of context diffs.
Notes
Notes:
svn path=/head/; revision=3914
Diffstat (limited to 'databases/msql3/files/patch-aa')
-rw-r--r-- | databases/msql3/files/patch-aa | 55 |
1 files changed, 22 insertions, 33 deletions
diff --git a/databases/msql3/files/patch-aa b/databases/msql3/files/patch-aa index 7de800054139..f59b15c633e8 100644 --- a/databases/msql3/files/patch-aa +++ b/databases/msql3/files/patch-aa @@ -1,33 +1,22 @@ -*** Makefile.orig Tue Feb 7 17:03:58 1995 ---- Makefile Wed Feb 22 18:04:45 1995 -*************** -*** 18,29 **** - SHELL=/bin/sh - - all: -! @ echo ""; echo "You have not read the installation procedures.";\ -! echo "Please read the README file for build instructions.";\ -! echo - - target: - @ scripts/make-target - - - ---- 18,33 ---- - SHELL=/bin/sh - - all: -! cd targets/freebsd ;\ -! make all -! -! install: -! cd targets/freebsd ;\ -! make install - - target: - @ scripts/make-target -+ @ ( ARCH=`scripts/sys-arch` ; cd targets; ln -s $$ARCH freebsd) - - - +--- Makefile.orig Tue Feb 7 20:03:58 1995 ++++ Makefile Thu Oct 3 20:08:24 1996 +@@ -18,12 +18,16 @@ + SHELL=/bin/sh + + all: +- @ echo ""; echo "You have not read the installation procedures.";\ +- echo "Please read the README file for build instructions.";\ +- echo ++ cd targets/freebsd ;\ ++ make all ++ ++install: ++ cd targets/freebsd ;\ ++ make install + + target: + @ scripts/make-target ++ @ ( ARCH=`scripts/sys-arch` ; cd targets; ln -s $$ARCH freebsd) + + + |