]> git.armaanb.net Git - asd-repo.git/blob - core/libedit/build
Adapt for asd linux
[asd-repo.git] / core / libedit / build
1 #!/bin/sh -e
2
3 # Fixes building with clang when clang doesn't include stdc-predef.h by default,
4 # which is where the required macro __STDC_ISO_10646__ is defined.
5 sed -i '31 a #include <stdc-predef.h>' src/chartype.h
6
7 ./configure \
8     --prefix=/usr
9
10 make
11 make DESTDIR="$1" install