forked from bartvdbraak/blender
1c14ead46f
- random.hpp was only removed from actual include directory, but not from patches/files. - Files list generator didn't ignore config.h file which in fact is not needed.
5 lines
142 B
Bash
Executable File
5 lines
142 B
Bash
Executable File
#!/bin/sh
|
|
|
|
find ./include/ -type f | sed -r 's/^\.\///' | grep -v /config.h > files.txt
|
|
find ./lib/ -type f | sed -r 's/^\.\///' >> files.txt
|