Skip to content

Commit

Permalink
Correct permissions and timestamps of the installed files
Browse files Browse the repository at this point in the history
  • Loading branch information
Orcan Ogetbil committed Nov 18, 2009
1 parent 5b167d1 commit 8dacda4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,14 @@ install-user: all install-really
install-really:
for plugin in $(BUILD_PLUGINS); do \
echo Installing $$plugin; \
install -d $(INSTALL_DIR_REALLY)/$$plugin; \
install plugins/$$plugin/*-$(OS).$(EXT) plugins/$$plugin/*.ttl $(INSTALL_DIR_REALLY)/$$plugin/ ; \
install -pd $(INSTALL_DIR_REALLY)/$$plugin; \
install -pm 755 plugins/$$plugin/*-$(OS).$(EXT) $(INSTALL_DIR_REALLY)/$$plugin/ ; \
install -pm 644 plugins/$$plugin/*.ttl $(INSTALL_DIR_REALLY)/$$plugin/ ; \
done

dist: real-clean all dist-clean
cd .. && \
cp -r lv2 swh-lv2-$(VERSION) && \
cp -pr lv2 swh-lv2-$(VERSION) && \
tar cfz swh-lv2-$(VERSION).tar.gz swh-lv2-$(VERSION)/{Makefile,README,*.mk,plugins/*/*,util/*,gverb/*,xslt/*,include/*} && \
rm -rf swh-lv2-$(VERSION)
mv ../swh-lv2-$(VERSION).tar.gz .
Expand Down

0 comments on commit 8dacda4

Please sign in to comment.