diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-09 00:27:59 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-09 00:27:59 +0100 |
commit | fadb47884308490085a33d3fb1e857a0f5e5d748 (patch) | |
tree | b78955b59ae121e50753c0d09e5e298c8ccf05cf /mk/package.mk | |
parent | 91e7244abc54001dc7b1063cd1b9818d46128bba (diff) | |
parent | a619c16fa72c3c15a198b452e512a08f18251930 (diff) |
resolve conflict
Diffstat (limited to 'mk/package.mk')
-rw-r--r-- | mk/package.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/package.mk b/mk/package.mk index dbf383c8b..cd1f47b6d 100644 --- a/mk/package.mk +++ b/mk/package.mk @@ -220,7 +220,7 @@ ifeq (,$(filter noremove,$(7))) fi endif @rm -f '$${STAGING_PARENT}/pkg/$(1)' - @cd $${IDIR_$(1)}; \ + @-cd $${IDIR_$(1)}; \ x=$$$$(find tmp var -mindepth 1 2>/dev/null); if [[ -n $$$$x ]]; then \ echo 'WARNING: $${IPKG_$(1)} installs files into a' \ 'ramdisk location:' >&2; \ @@ -233,7 +233,7 @@ endif find usr ! -type d 2>/dev/null | \ grep -v -e '^usr/share' -e '^usr/man' -e '^usr/info' | \ tee '$${STAGING_PARENT}/pkg/$(1)' | \ - cpio -apdlmu '$${STAGING_DIR}' + cpio -padlmu '$${STAGING_DIR}' @cd '$${STAGING_DIR}'; grep 'usr/lib/.*\.la$$$$' \ '$${STAGING_PARENT}/pkg/$(1)' | while read fn; do \ chmod u+w $$$$fn; \ |