diff options
author | Peter Wemm <peter@FreeBSD.org> | 1996-05-27 12:33:48 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1996-05-27 12:33:48 +0000 |
commit | 29e2e368ea008b21a63d14b049952d45a50a050b (patch) | |
tree | 34b2b8d8763e4ace3770cf985da4d8aaaf58d646 /x11-wm | |
parent | 3cbe3004b5b4d2d86d546b9341771a1240be4546 (diff) |
Use ${INSTALL} to install the xpm files rather than cp, otherwise you get
the wrong uid/gid
Notes
Notes:
svn path=/head/; revision=3144
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/fvwm/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/x11-wm/fvwm/Makefile b/x11-wm/fvwm/Makefile index e7bbc4c81f48..ce4d3c2c3d1e 100644 --- a/x11-wm/fvwm/Makefile +++ b/x11-wm/fvwm/Makefile @@ -3,7 +3,7 @@ # Date created: 12 May 1995 # Whom: me # -# $Id: Makefile,v 1.18 1995/05/30 09:54:14 asami Exp $ +# $Id: Makefile,v 1.19 1995/08/08 10:35:06 asami Exp $ # DISTNAME= fvwm-1.24r @@ -20,6 +20,7 @@ ALL_TARGET= Makefiles all post-install: @mkdir -p ${PREFIX}/include/X11/pixmaps - cp ${WRKSRC}/fvwm_icons/*.xpm ${PREFIX}/include/X11/pixmaps + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${WRKSRC}/fvwm_icons/*.xpm ${PREFIX}/include/X11/pixmaps .include <bsd.port.mk> |