aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2012-12-23 15:43:48 +0000
committerRob Austein <sra@hactrn.net>2012-12-23 15:43:48 +0000
commit4cfd96e7a9a824e02ab7ce2d17cc03151caf8c8f (patch)
treece729460c04f0724a6fdaa0ce3b0d203caf47f34
parentb07a44747a49f8cf9679ca5011475db36d3fda47 (diff)
"install -t" is a GNU-ism that only works on some platforms.
See #373. svn path=/trunk/; revision=4943
-rw-r--r--rpkid/portal-gui/Makefile.in6
1 files 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