From d3a98cf6cbc3bd0b9efc570f58e8812c03931c18 Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Tue, 16 Oct 2018 10:08:48 +0200 Subject: Original 5.40 --- hacks/glx/molecules.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 hacks/glx/molecules.sh (limited to 'hacks/glx/molecules.sh') diff --git a/hacks/glx/molecules.sh b/hacks/glx/molecules.sh new file mode 100755 index 0000000..4f417c3 --- /dev/null +++ b/hacks/glx/molecules.sh @@ -0,0 +1,23 @@ +#!/bin/sh + +TARGET=$1 +shift +SRCS=$* + +TMP=molecules.h.$$ +rm -f $TMP +trap "rm -f $TMP" 1 2 3 15 EXIT + +if [ -z "$UTILS_SRC" ]; then UTILS_SRC="../../utils"; fi + +for f in $SRCS ; do + sh "$UTILS_SRC/ad2c" "$f" | + sed 's/",$/\\n"/' >> $TMP + echo ',' >> $TMP +done + +if cmp -s $TMP $TARGET ; then + rm $TMP +else + mv $TMP $TARGET +fi -- cgit v1.2.3-55-g7522