diff options
author | jlam <jlam> | 2004-11-14 08:44:26 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-11-14 08:44:26 +0000 |
commit | d52242264f565611ccf0218560682e6a50144563 (patch) | |
tree | fe5513feeacf0089ff37c63edcd34dced00d8a6c /devel | |
parent | fbfa3bf0681385b1cda3b906afc38cf566ea5f5a (diff) | |
download | pkgsrc-d52242264f565611ccf0218560682e6a50144563.tar.gz |
Whitespace and formatting nits.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/syncdir/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/devel/syncdir/Makefile b/devel/syncdir/Makefile index 77547390d04..1c36b813bdd 100644 --- a/devel/syncdir/Makefile +++ b/devel/syncdir/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2004/11/14 08:42:28 jlam Exp $ +# $NetBSD: Makefile,v 1.5 2004/11/14 08:44:26 jlam Exp $ # DISTNAME= syncdir-1.0 @@ -18,12 +18,13 @@ USE_LIBTOOL= # defined INSTALLATION_DIRS= lib do-build: - cd ${WRKSRC}; \ - ${LIBTOOL} --mode=compile ${CC} ${CFLAGS} -c syncdir.c; \ - ${LIBTOOL} --mode=link ${CC} ${LDFLAGS} -version-info 1:0:0 -rpath ${PREFIX}/lib -o libsyncdir.la syncdir.lo + cd ${WRKSRC} && ${LIBTOOL} --mode=compile ${CC} ${CFLAGS} -c syncdir.c + cd ${WRKSRC} && ${LIBTOOL} --mode=link ${CC} ${LDFLAGS} \ + -o libsyncdir.la syncdir.lo \ + -version-info 1:0:0 -rpath ${PREFIX}/lib do-install: - cd ${WRKSRC}; \ - ${LIBTOOL} --mode=install ${INSTALL_LIB} -c libsyncdir.la ${PREFIX}/lib/libsyncdir.la + cd ${WRKSRC} && ${LIBTOOL} --mode=install ${INSTALL_LIB} \ + -c libsyncdir.la ${PREFIX}/lib/libsyncdir.la .include "../../mk/bsd.pkg.mk" |