diff options
author | gj <gj@FreeBSD.org> | 1998-06-05 03:21:46 +0800 |
---|---|---|
committer | gj <gj@FreeBSD.org> | 1998-06-05 03:21:46 +0800 |
commit | 3f8a0dc6eb335e70df6c8717412cadea066312bb (patch) | |
tree | fed397f5c6167ecfa68269d29afc561cc2e55eb2 | |
parent | b54fe66d11cdccbdac8cccd1a064ff3473cf4c01 (diff) | |
download | freebsd-ports-gnome-3f8a0dc6eb335e70df6c8717412cadea066312bb.tar.gz freebsd-ports-gnome-3f8a0dc6eb335e70df6c8717412cadea066312bb.tar.zst freebsd-ports-gnome-3f8a0dc6eb335e70df6c8717412cadea066312bb.zip |
Fix the last commit so that it really works. There was a ';' in the
wrong place.
Lesson learned: do not use old patches when committing !
-rw-r--r-- | editors/xemacs-devel/Makefile | 4 | ||||
-rw-r--r-- | editors/xemacs/Makefile | 4 | ||||
-rw-r--r-- | editors/xemacs20/Makefile | 4 | ||||
-rw-r--r-- | editors/xemacs21/Makefile | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/editors/xemacs-devel/Makefile b/editors/xemacs-devel/Makefile index f42467e6f5ac..9b296b0f10a7 100644 --- a/editors/xemacs-devel/Makefile +++ b/editors/xemacs-devel/Makefile @@ -3,7 +3,7 @@ # Date created: 26 August 1997 # Whom: Michael Elbel (me) # -# $Id: Makefile,v 1.14 1998/05/04 20:23:24 jseger Exp $ +# $Id: Makefile,v 1.15 1998/06/03 19:29:58 gj Exp $ # DISTNAME= xemacs-20.4 @@ -73,7 +73,7 @@ post-install: chmod 755 ${PREFIX}/share/emacs/site-lisp ${RM} -f ${PREFIX}/bin/send-pr # install xemacs.sh into ${PREFIX}/etc/rc.d - @if [ ! -d ${PREFIX}/etc/rc.d ] then; mkdir -p ${PREFIX}/etc/rc.d; fi + @if [ ! -d ${PREFIX}/etc/rc.d ]; then mkdir -p ${PREFIX}/etc/rc.d; fi ${INSTALL_SCRIPT} ${FILESDIR}/xemacs.sh ${PREFIX}/etc/rc.d .include <bsd.port.mk> diff --git a/editors/xemacs/Makefile b/editors/xemacs/Makefile index f42467e6f5ac..9b296b0f10a7 100644 --- a/editors/xemacs/Makefile +++ b/editors/xemacs/Makefile @@ -3,7 +3,7 @@ # Date created: 26 August 1997 # Whom: Michael Elbel (me) # -# $Id: Makefile,v 1.14 1998/05/04 20:23:24 jseger Exp $ +# $Id: Makefile,v 1.15 1998/06/03 19:29:58 gj Exp $ # DISTNAME= xemacs-20.4 @@ -73,7 +73,7 @@ post-install: chmod 755 ${PREFIX}/share/emacs/site-lisp ${RM} -f ${PREFIX}/bin/send-pr # install xemacs.sh into ${PREFIX}/etc/rc.d - @if [ ! -d ${PREFIX}/etc/rc.d ] then; mkdir -p ${PREFIX}/etc/rc.d; fi + @if [ ! -d ${PREFIX}/etc/rc.d ]; then mkdir -p ${PREFIX}/etc/rc.d; fi ${INSTALL_SCRIPT} ${FILESDIR}/xemacs.sh ${PREFIX}/etc/rc.d .include <bsd.port.mk> diff --git a/editors/xemacs20/Makefile b/editors/xemacs20/Makefile index f42467e6f5ac..9b296b0f10a7 100644 --- a/editors/xemacs20/Makefile +++ b/editors/xemacs20/Makefile @@ -3,7 +3,7 @@ # Date created: 26 August 1997 # Whom: Michael Elbel (me) # -# $Id: Makefile,v 1.14 1998/05/04 20:23:24 jseger Exp $ +# $Id: Makefile,v 1.15 1998/06/03 19:29:58 gj Exp $ # DISTNAME= xemacs-20.4 @@ -73,7 +73,7 @@ post-install: chmod 755 ${PREFIX}/share/emacs/site-lisp ${RM} -f ${PREFIX}/bin/send-pr # install xemacs.sh into ${PREFIX}/etc/rc.d - @if [ ! -d ${PREFIX}/etc/rc.d ] then; mkdir -p ${PREFIX}/etc/rc.d; fi + @if [ ! -d ${PREFIX}/etc/rc.d ]; then mkdir -p ${PREFIX}/etc/rc.d; fi ${INSTALL_SCRIPT} ${FILESDIR}/xemacs.sh ${PREFIX}/etc/rc.d .include <bsd.port.mk> diff --git a/editors/xemacs21/Makefile b/editors/xemacs21/Makefile index f42467e6f5ac..9b296b0f10a7 100644 --- a/editors/xemacs21/Makefile +++ b/editors/xemacs21/Makefile @@ -3,7 +3,7 @@ # Date created: 26 August 1997 # Whom: Michael Elbel (me) # -# $Id: Makefile,v 1.14 1998/05/04 20:23:24 jseger Exp $ +# $Id: Makefile,v 1.15 1998/06/03 19:29:58 gj Exp $ # DISTNAME= xemacs-20.4 @@ -73,7 +73,7 @@ post-install: chmod 755 ${PREFIX}/share/emacs/site-lisp ${RM} -f ${PREFIX}/bin/send-pr # install xemacs.sh into ${PREFIX}/etc/rc.d - @if [ ! -d ${PREFIX}/etc/rc.d ] then; mkdir -p ${PREFIX}/etc/rc.d; fi + @if [ ! -d ${PREFIX}/etc/rc.d ]; then mkdir -p ${PREFIX}/etc/rc.d; fi ${INSTALL_SCRIPT} ${FILESDIR}/xemacs.sh ${PREFIX}/etc/rc.d .include <bsd.port.mk> |