diff options
author | adamw <adamw@FreeBSD.org> | 2014-07-31 20:23:03 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2014-07-31 20:23:03 +0800 |
commit | 18af8daf7577e1328f31c3040918e2a063e6aea9 (patch) | |
tree | 1c6e5dbc22cb7539d17e33dc9267508fbe3142ef /net-mgmt | |
parent | 45e8571a4797ff19f93082c2d9f0357fc99281c3 (diff) | |
download | freebsd-ports-gnome-18af8daf7577e1328f31c3040918e2a063e6aea9.tar.gz freebsd-ports-gnome-18af8daf7577e1328f31c3040918e2a063e6aea9.tar.zst freebsd-ports-gnome-18af8daf7577e1328f31c3040918e2a063e6aea9.zip |
Use mv instead of install to avoid stale files in stagedir.
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/kismet/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-mgmt/kismet/Makefile b/net-mgmt/kismet/Makefile index 62d9fd84a0e7..ab5f09551d8d 100644 --- a/net-mgmt/kismet/Makefile +++ b/net-mgmt/kismet/Makefile @@ -94,9 +94,9 @@ post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} @${INSTALL_DATA} ${WRKSRC}/ruby/* ${STAGEDIR}${EXAMPLESDIR} .endif - @${INSTALL_DATA} ${WRKSRC}/conf/kismet.conf \ + @${MV} ${STAGEDIR}${PREFIX}/etc/kismet.conf \ ${STAGEDIR}${PREFIX}/etc/kismet.conf.sample - @${INSTALL_DATA} ${WRKSRC}/conf/kismet_drone.conf \ + @${MV} ${STAGEDIR}${PREFIX}/etc/kismet_drone.conf \ ${STAGEDIR}${PREFIX}/etc/kismet_drone.conf.sample .include <bsd.port.mk> |