From 74b0a7cc4fba9e9e9910ee891c04dd676f06d11f Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Fri, 30 Jan 2009 20:38:02 +0530 Subject: Compatibility with *BSD systems `install` is different on non-GNU --- master/icons/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/master/icons/Makefile b/master/icons/Makefile index 09c218a..736d2f5 100644 --- a/master/icons/Makefile +++ b/master/icons/Makefile @@ -19,7 +19,7 @@ clean: install: all test -n "${DESTDIR}" || ( echo "Please define DESTDIR" ; exit 1 ) - ${INSTALL} -m ${IMGMODE} ${IMGS} ${IMGS_MEDIUM} -t ${DESTDIR}/master/media/images || exit $$? + ${INSTALL} -m ${IMGMODE} ${IMGS} ${IMGS_MEDIUM} ${DESTDIR}/master/media/images || exit $$? uninstall: for img in ${IMGS} ${IMGS_MEDIUM}; do rm -f ${DESTDIR}/master/media/images/$$img; done -- cgit v1.2.3-65-gdbad