diff options
author | peter <peter@FreeBSD.org> | 1996-05-27 20:33:48 +0800 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-05-27 20:33:48 +0800 |
commit | 8c8defb2da607a8ae67d9d81aa184268d6b0481a (patch) | |
tree | 8e50ed31d93cbcfee82891bdf92c6861ea7068d4 /x11-wm | |
parent | 7d8549bf33949b31d7d529e93033578157f83aff (diff) | |
download | freebsd-ports-gnome-8c8defb2da607a8ae67d9d81aa184268d6b0481a.tar.gz freebsd-ports-gnome-8c8defb2da607a8ae67d9d81aa184268d6b0481a.tar.zst freebsd-ports-gnome-8c8defb2da607a8ae67d9d81aa184268d6b0481a.zip |
Use ${INSTALL} to install the xpm files rather than cp, otherwise you get
the wrong uid/gid
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> |