diff options
author | Gabor Kovesdan <gabor@FreeBSD.org> | 2007-08-04 19:41:30 +0800 |
---|---|---|
committer | Gabor Kovesdan <gabor@FreeBSD.org> | 2007-08-04 19:41:30 +0800 |
commit | 42542fb07642b8336e808272918f3ae46aa67e0b (patch) | |
tree | 98ff235c33c6493aa26457284f122652c38935f7 /archivers/dact | |
parent | 4c9cd257fd4e6eca46807a43e128d298429ee3cd (diff) | |
download | freebsd-ports-gnome-42542fb07642b8336e808272918f3ae46aa67e0b.tar.gz freebsd-ports-gnome-42542fb07642b8336e808272918f3ae46aa67e0b.tar.zst freebsd-ports-gnome-42542fb07642b8336e808272918f3ae46aa67e0b.zip |
- Remove the DESTDIR modifications from individual ports as we have a new,
fully chrooted DESTDIR, which does not need such any more.
Sponsored by: Google Summer of Code 2007
Approved by: portmgr (pav)
Diffstat (limited to 'archivers/dact')
-rw-r--r-- | archivers/dact/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archivers/dact/Makefile b/archivers/dact/Makefile index 96cad62206f0..9f7fe10d4573 100644 --- a/archivers/dact/Makefile +++ b/archivers/dact/Makefile @@ -31,8 +31,8 @@ MAN1= dact.1 INSTALLS_SHLIB= yes post-patch: - @${REINPLACE_CMD} -e "s|prefix = @prefix@|prefix = ${TARGETDIR}|" \ - -e "s|libdir = @libdir@|libdir = ${TARGETDIR}/lib|" \ + @${REINPLACE_CMD} -e "s|prefix = @prefix@|prefix = ${PREFIX}|" \ + -e "s|libdir = @libdir@|libdir = ${PREFIX}/lib|" \ ${WRKSRC}/Makefile.in pre-install: @@ -40,7 +40,7 @@ pre-install: @${RM} -f ${WRKSRC}/libdact.a post-install: - @${CP} -n ${EXAMPLESDIR}/dact.conf ${TARGETDIR}/etc + @${CP} -n ${EXAMPLESDIR}/dact.conf ${PREFIX}/etc .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/Docs/dact.txt ${DOCSDIR} |