From f7f82d36a74d327df5d3f9ed4742b93cdedb0b47 Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Mon, 31 Oct 2016 22:33:29 -0400 Subject: [PATCH] fix regression with installing 4.data.structures subdirs on Windows --- pd/src/makefile.mingw | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pd/src/makefile.mingw b/pd/src/makefile.mingw index 899966812..647d76388 100755 --- a/pd/src/makefile.mingw +++ b/pd/src/makefile.mingw @@ -283,10 +283,10 @@ install: all install -d $(pddocdir)/$$dir ; \ install -p ../doc/$$dir/*.* $(pddocdir)/$$dir ; \ done - for dir in $(shell ls -1 ../doc/4.data.structures | grep -v CVS); do \ - echo "installing 4.data.structures/$$dir"; \ - install -d $(pddocdir)/4.data.structures/$$dir ; \ - install -p ../doc/4.data.structures/$$dir/*.* $(pddocdir)/4.data.structures/$$dir ; \ + for dir in $(shell ls -1 ../doc/4.data.structures/pd-l2ork | grep -v CVS); do \ + echo "installing 4.data.structures/pd-l2ork/$$dir"; \ + install -d $(pddocdir)/4.data.structures/pd-l2ork/$$dir ; \ + install -p ../doc/4.data.structures/pd-l2ork/$$dir/*.* $(pddocdir)/4.data.structures/pd-l2ork/$$dir ; \ done for dir in $(shell ls -1 ../doc/7.stuff | grep -v CVS); do \ echo "installing 7.stuff/$$dir"; \ -- GitLab