aboutsummaryrefslogtreecommitdiffstats
path: root/Mk
diff options
context:
space:
mode:
authorjylefort <jylefort@FreeBSD.org>2005-11-17 00:50:15 +0800
committerjylefort <jylefort@FreeBSD.org>2005-11-17 00:50:15 +0800
commitafdbfdd6d30b503c693d207b5da7ae72bf661eb2 (patch)
treea8f674d07934f951c6f206a04703014f647e79d3 /Mk
parent7df95f898204f4a0ed35ac54afa24ee0482f3c99 (diff)
downloadfreebsd-ports-gnome-afdbfdd6d30b503c693d207b5da7ae72bf661eb2.tar.gz
freebsd-ports-gnome-afdbfdd6d30b503c693d207b5da7ae72bf661eb2.tar.zst
freebsd-ports-gnome-afdbfdd6d30b503c693d207b5da7ae72bf661eb2.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.
Diffstat (limited to 'Mk')
-rw-r--r--Mk/bsd.gnome.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.gnome.mk b/Mk/bsd.gnome.mk
index a17d2246fcdf..5dd7ccdc153c 100644
--- a/Mk/bsd.gnome.mk
+++ b/Mk/bsd.gnome.mk
@@ -742,9 +742,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