summaryrefslogtreecommitdiff
path: root/build-recipe-livebuild
diff options
context:
space:
mode:
authorJan Blunck <jblunck@infradead.org>2014-07-09 22:06:20 +0200
committerJan Blunck <jblunck@infradead.org>2014-07-09 22:06:20 +0200
commit47f3515c412468cad9020c68883d115309362ebc (patch)
treee4e4714dcfa5f1b0bdde23f082c7e3cea154a44d /build-recipe-livebuild
parenteb0b49ebb060e58cfce9536a2078da98a49b37f1 (diff)
livebuild: Remove another left-over when using the repos sub-directory
This is removing another code section that is not required anymore since we are using the /.build.binaries folder instead. Signed-off-by: Jan Blunck <jblunck@infradead.org>
Diffstat (limited to 'build-recipe-livebuild')
-rw-r--r--build-recipe-livebuild10
1 files changed, 1 insertions, 9 deletions
diff --git a/build-recipe-livebuild b/build-recipe-livebuild
index 5e73bd7..dc9dfad 100644
--- a/build-recipe-livebuild
+++ b/build-recipe-livebuild
@@ -30,15 +30,7 @@ recipe_setup_livebuild() {
if test "$MYSRCDIR" = $BUILD_ROOT/.build-srcdir ; then
mv "$MYSRCDIR"/* $BUILD_ROOT$TOPDIR/SOURCES/
else
- if test -z "$LINKSOURCES" ; then
- cp -dLR "$MYSRCDIR"/* $BUILD_ROOT$TOPDIR/SOURCES/
- else
- cp -lR "$MYSRCDIR"/* $BUILD_ROOT$TOPDIR/SOURCES/
- fi
- if test "$?" != 0 ; then
- echo "source copy failed"
- cleanup_and_exit 1
- fi
+ cp -p "$MYSRCDIR"/* $BUILD_ROOT$TOPDIR/SOURCES/
fi
}