blob: ad2868d3f6b31ba71803f5c879c2e157d42f494f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# $NetBSD: prepare-import.sh,v 1.4 2021/05/30 01:56:59 joerg Exp $
#
# Checkout libcxxrt in the corresponding subdirectories of
# dist. Run this script and check for additional files and
# directories to prune, only relevant content should be included.
set -e
cd ../libcxxrt
rm -rf .git CMakeLists.txt */CMakeLists.txt src/doxygen_config
|