path.c: implement xdg_config_home()
[gitweb.git] / update_unicode.sh
index f5cc14b33808885e852282f98a27398b9ccdfba0..27af77c7df63f8a9039d77b332ebb06d69f02f65 100755 (executable)
@@ -26,14 +26,15 @@ fi &&
                        ./configure --enable-warnings=-Werror CFLAGS='-O0 -ggdb'
                fi &&
                make
-       ) && {
-               UNICODE_DIR=. && export UNICODE_DIR &&
-               echo "static const struct interval zero_width[] = {" &&
-               uniset/uniset --32 cat:Me,Mn,Cf + U+1160..U+11FF - U+00AD |
-               grep -v plane &&
-               echo "};" &&
-               echo "static const struct interval double_width[] = {" &&
-               uniset/uniset --32 eaw:F,W &&
-               echo "};"
-       } >$UNICODEWIDTH_H
+       ) &&
+       UNICODE_DIR=. && export UNICODE_DIR &&
+       cat >$UNICODEWIDTH_H <<-EOF
+       static const struct interval zero_width[] = {
+               $(uniset/uniset --32 cat:Me,Mn,Cf + U+1160..U+11FF - U+00AD |
+                 grep -v plane)
+       };
+       static const struct interval double_width[] = {
+               $(uniset/uniset --32 eaw:F,W)
+       };
+       EOF
 )