diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2006-01-23 07:04:10 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2006-01-23 07:04:10 +0000 |
commit | f6159fbf7a88c697ec5fc8af9fa477c9d5f7c572 (patch) | |
tree | ba6e57d5890ba57f1e0b09e25c2ee9a110064d4d /databases/php-sqlrelay | |
parent | 78a96568b81f92299739dd3446c5e01a6d0b04ec (diff) | |
download | ports-f6159fbf7a88c697ec5fc8af9fa477c9d5f7c572.tar.gz ports-f6159fbf7a88c697ec5fc8af9fa477c9d5f7c572.zip |
Revert last commit. It is not possible (yet) to have the dirrmtry usage
in the post-install target. Its usage must preceed generate-plist.
This problem needs to be revisited either in a rework of bsd.port.mk or
each of these Makefiles.
Hat: portmgr
Pointy hat: edwin`
Notes
Notes:
svn path=/head/; revision=154215
Diffstat (limited to 'databases/php-sqlrelay')
-rw-r--r-- | databases/php-sqlrelay/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/php-sqlrelay/Makefile b/databases/php-sqlrelay/Makefile index d16cd78cbfbd..ef541abaa9d9 100644 --- a/databases/php-sqlrelay/Makefile +++ b/databases/php-sqlrelay/Makefile @@ -50,7 +50,7 @@ pre-install: post-install: dir=`php-config --extension-dir | ${SED} 's,^${LOCALBASE}/,,'`; \ ${ECHO_CMD} "$$dir/sql_relay.so" >> ${TMPPLIST}; \ - ${ECHO_CMD} "@dirrmtry $$dir" >> ${TMPPLIST} + ${ECHO_CMD} "@unexec rmdir %D/$$dir 2>/dev/null || true" >> ${TMPPLIST} @${MKDIR} ${PREFIX}/etc/php @${ECHO_CMD} extension=sql_relay.so \ >> ${PREFIX}/etc/php/extensions.ini @@ -64,7 +64,7 @@ post-install: >> ${TMPPLIST} @${ECHO_CMD} "@unexec [ -s %D/etc/php/extensions.ini ] || rm %D/etc/php/extensions.ini" \ >> ${TMPPLIST} - @${ECHO_CMD} "@dirrmtry etc/php" \ + @${ECHO_CMD} "@unexec rmdir %D/etc/php 2> /dev/null || true" \ >> ${TMPPLIST} .include <bsd.port.post.mk> |