diff options
Diffstat (limited to 'scripts/lib')
| -rw-r--r-- | scripts/lib/devtool/standard.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index 7600a8fa1f..9ac2ad57a8 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py | |||
| @@ -238,6 +238,17 @@ def add(args, config, basepath, workspace): | |||
| 238 | f.write(' rm -f ${D}/singletask.lock\n') | 238 | f.write(' rm -f ${D}/singletask.lock\n') |
| 239 | f.write('}\n') | 239 | f.write('}\n') |
| 240 | 240 | ||
| 241 | if bb.data.inherits_class('npm', rd): | ||
| 242 | f.write('do_install_append() {\n') | ||
| 243 | f.write(' # Remove files added to source dir by devtool/externalsrc\n') | ||
| 244 | f.write(' rm -f ${NPM_INSTALLDIR}/singletask.lock\n') | ||
| 245 | f.write(' rm -rf ${NPM_INSTALLDIR}/.git\n') | ||
| 246 | f.write(' rm -rf ${NPM_INSTALLDIR}/oe-local-files\n') | ||
| 247 | f.write(' for symlink in ${EXTERNALSRC_SYMLINKS} ; do\n') | ||
| 248 | f.write(' rm -f ${NPM_INSTALLDIR}/${symlink%%:*}\n') | ||
| 249 | f.write(' done\n') | ||
| 250 | f.write('}\n') | ||
| 251 | |||
| 241 | _add_md5(config, recipename, appendfile) | 252 | _add_md5(config, recipename, appendfile) |
| 242 | 253 | ||
| 243 | logger.info('Recipe %s has been automatically created; further editing may be required to make it fully functional' % recipefile) | 254 | logger.info('Recipe %s has been automatically created; further editing may be required to make it fully functional' % recipefile) |
