5646d8ff A |
1 | #!/bin/bash |
2 | set -e -x |
3 | |
4 | DIR="$DSTROOT"/usr/include/arpa |
5 | install -d -m 0755 -o "$INSTALL_OWNER" -g "$INSTALL_GROUP" \ |
6 | "$DIR" |
7 | ln -s ../nameser.h "$DIR" |
8 | chmod -h 0644 "$DIR"/nameser.h |
9 | chown -h "$INSTALL_OWNER:$INSTALL_GROUP" "$DIR"/nameser.h |