summaryrefslogtreecommitdiffstats
path: root/Mk/bsd.gnome.mk
diff options
context:
space:
mode:
authorjylefort <jylefort@df743ca5-7f9a-e211-a948-0013205c9059>2005-11-17 00:53:33 +0800
committerjylefort <jylefort@df743ca5-7f9a-e211-a948-0013205c9059>2005-11-17 00:53:33 +0800
commit67276ab58bc54c593498ca4ce5b184f53a155fc3 (patch)
tree5df33756ce22eb9d44a60505eaa2c4735905e4a1 /Mk/bsd.gnome.mk
parentb967389d8f404cde13297489fb0d76066b6f2753 (diff)
downloadmarcuscom-ports-67276ab58bc54c593498ca4ce5b184f53a155fc3.tar
marcuscom-ports-67276ab58bc54c593498ca4ce5b184f53a155fc3.tar.gz
marcuscom-ports-67276ab58bc54c593498ca4ce5b184f53a155fc3.tar.bz2
marcuscom-ports-67276ab58bc54c593498ca4ce5b184f53a155fc3.tar.lz
marcuscom-ports-67276ab58bc54c593498ca4ce5b184f53a155fc3.tar.xz
marcuscom-ports-67276ab58bc54c593498ca4ce5b184f53a155fc3.tar.zst
marcuscom-ports-67276ab58bc54c593498ca4ce5b184f53a155fc3.zip
Use ${X11BASE} rather than %%X11BASE%% in the packing list of
INSTALLS_ICONS ports. The latter does not work because we modify the packing list after the PLIST_SUB processing. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@5151 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'Mk/bsd.gnome.mk')
-rw-r--r--Mk/bsd.gnome.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mk/bsd.gnome.mk b/Mk/bsd.gnome.mk
index 922d1b0ac..75e863445 100644
--- a/Mk/bsd.gnome.mk
+++ b/Mk/bsd.gnome.mk
@@ -3,7 +3,7 @@
#
# $FreeBSD$
# $NetBSD: $
-# $MCom: ports/Mk/bsd.gnome.mk,v 1.339 2005/11/11 23:25:36 ahze Exp $
+# $MCom: ports/Mk/bsd.gnome.mk,v 1.340 2005/11/12 07:58:22 ahze Exp $
#
# Please view me with 4 column tabs!
@@ -754,9 +754,9 @@ gnome-post-install:
@for i in `${GREP} "^share/icons/.*/" ${TMPPLIST} | ${CUT} -d / -f 1-3 | ${SORT} -u`; do \
${ECHO_CMD} "@unexec /bin/rm %D/$${i}/icon-theme.cache 2>/dev/null || /usr/bin/true" \
>> ${TMPPLIST}.icons1; \
- ${ECHO_CMD} "@exec %%X11BASE%%/bin/gtk-update-icon-cache -q -f %D/$${i} 2>/dev/null || /usr/bin/true" \
+ ${ECHO_CMD} "@exec ${X11BASE}/bin/gtk-update-icon-cache -q -f %D/$${i} 2>/dev/null || /usr/bin/true" \
>> ${TMPPLIST}; \
- ${ECHO_CMD} "@unexec %%X11BASE%%/bin/gtk-update-icon-cache -q -f %D/$${i} 2>/dev/null || /usr/bin/true" \
+ ${ECHO_CMD} "@unexec ${X11BASE}/bin/gtk-update-icon-cache -q -f %D/$${i} 2>/dev/null || /usr/bin/true" \
>> ${TMPPLIST}; \
${X11BASE}/bin/gtk-update-icon-cache -q -f ${PREFIX}/$${i} 2>/dev/null || ${TRUE}; \
done