/core/externals/update-engine/externals/gdata-objectivec-client/Examples/GooglePhotosSample/buildStripHeaders
Shell | 17 lines | 3 code | 5 blank | 9 comment | 0 complexity | 38b5302dc0e4a662c40b288306a2f6ac MD5 | raw file
1#!/bin/sh 2# 3# buildStripHeaders 4# 5# Remove header files from the built copy of the framework inside our 6# application. 7 8# Strip "*.h" files 9find "${BUILD_ROOT}/${CONFIGURATION}/${WRAPPER_NAME}" -iname '*.h' -delete 10 11# Strip "Headers" links 12find "${BUILD_ROOT}/${CONFIGURATION}/${WRAPPER_NAME}" -iname 'Headers' -type l -delete 13 14# Strip "Headers" directories 15find "${BUILD_ROOT}/${CONFIGURATION}/${WRAPPER_NAME}" -iname 'Headers' -type d -prune -delete 16 17