]> git.droids-corp.org - dpdk.git/blobdiff - doc/api/generate_examples.sh
doc: emphasise VFIO over UIO-based modules in Linux guide
[dpdk.git] / doc / api / generate_examples.sh
index dae7ee0be0517d8f161746e14e1e9400a8d6a3e2..48574563ca9d4690c9af717bedcd5da1d389bad6 100755 (executable)
@@ -5,12 +5,16 @@
 EXAMPLES_DIR=$1
 API_EXAMPLES=$2
 
+FIND=find
+
 # generate a .d file including both C files and also build files, so we can
 # detect both file changes and file additions/deletions
-echo "$API_EXAMPLES: $(find ${EXAMPLES_DIR} -type f \( -name '*.c' -o -name 'meson.build' \) -printf '%p ' )" > ${API_EXAMPLES}.d
+echo "$API_EXAMPLES: $($FIND ${EXAMPLES_DIR} -type f \( -name '*.c' -o -name 'meson.build' \) | tr '\n' ' ' )" > ${API_EXAMPLES}.d
 
 exec > "${API_EXAMPLES}"
 printf '/**\n'
 printf '@page examples DPDK Example Programs\n\n'
-find "${EXAMPLES_DIR}" -type f -name '*.c' -printf '@example examples/%P\n' | LC_ALL=C sort
+$FIND "${EXAMPLES_DIR}" -type f -name '*.c' |
+       sed "s|${EXAMPLES_DIR}|@example examples|" |
+       LC_ALL=C sort
 printf '*/\n'