From 4cfd96e7a9a824e02ab7ce2d17cc03151caf8c8f Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Sun, 23 Dec 2012 15:43:48 +0000 Subject: "install -t" is a GNU-ism that only works on some platforms. See #373. svn path=/trunk/; revision=4943 --- rpkid/portal-gui/Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rpkid/portal-gui/Makefile.in b/rpkid/portal-gui/Makefile.in index 0e5da9d8..e9af1cbe 100644 --- a/rpkid/portal-gui/Makefile.in +++ b/rpkid/portal-gui/Makefile.in @@ -51,9 +51,9 @@ install: $(BUILD) ${INSTALL} -m 644 settings.py ${SYSCONFDIR} # this would be better handled with "django-admin collectstatic" but makes the install # process harder for the end user. - ${INSTALL} -m 644 -t $(INSTDIR)/media/css $(srcdir)/../rpki/gui/app/static/css/* - ${INSTALL} -m 644 -t $(INSTDIR)/media/js $(srcdir)/../rpki/gui/app/static/js/* - ${INSTALL} -m 644 -t $(INSTDIR)/media/img $(srcdir)/../rpki/gui/app/static/img/* + ${INSTALL} -m 644 $(srcdir)/../rpki/gui/app/static/css/* $(INSTDIR)/media/css + ${INSTALL} -m 644 $(srcdir)/../rpki/gui/app/static/js/* $(INSTDIR)/media/js + ${INSTALL} -m 644 $(srcdir)/../rpki/gui/app/static/img/* $(INSTDIR)/media/img deinstall uninstall: rm -rf $(INSTDIR)/media $(INSTDIR)/wsgi -- cgit v1.2.3