aboutsummaryrefslogtreecommitdiffhomepage
path: root/maker.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2018-02-27 18:19:53 -0500
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:14 -0400
commitfb3a5d3e04970c7631253f2530693d0cf21b33db (patch)
tree4001cd446ed137c3c7ac19badbee447000c622ca /maker.org
parent0.25.0 remove sdlang (headers, conf, make doc) (diff)
(header, doc make, config) add checks to toml
Diffstat (limited to 'maker.org')
-rw-r--r--maker.org6
1 files changed, 3 insertions, 3 deletions
diff --git a/maker.org b/maker.org
index 9ae8a4f..23589ab 100644
--- a/maker.org
+++ b/maker.org
@@ -58,7 +58,7 @@ ORGDIR :=$(shell echo `pwd`)
#+BEGIN_SRC makefile :tangle makefile
SiSU_MARKUP_SAMPLES_PODS_FOUND= \
-find data/sisupod -maxdepth 2 -name sisupod.manifest | cut -f 1-4 -d / | sort | xargs
+find data/sisupod -maxdepth 2 -name sisupod.manifest | cut -f 1-3 -d / | sort | xargs
SiSU_MARKUP_SAMPLES_POD = \
data/sisupod/accelerando.charles_stross \
@@ -146,13 +146,13 @@ data/sisudir/media/text/viral_spiral.david_bollier.sst
#+BEGIN_SRC makefile :tangle makefile
markup_samples:
- find data/sisupod -name sisupod.manifest | cut -f 1-4 -d / | sort; \
+ find data/sisupod -name sisupod.manifest | cut -f 1-3 -d / | sort; \
find data/sisudir/media/text -name *.ss[tm] | sort
#+END_SRC
#+BEGIN_SRC makefile :tangle makefile
markup_pod_samples:
- find data/sisupod -name sisupod.manifest | cut -f 1-4 -d / | sort
+ find data/sisupod -name sisupod.manifest | cut -f 1-3 -d / | sort
#+END_SRC
#+BEGIN_SRC makefile :tangle makefile