From e70475f34e06a3d871a57b96da95e3f28212d8af Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Tue, 14 Aug 2018 15:37:18 +0200 Subject: [PATCH] avoid symlinks in libetpan and copy the headers as files (eg. 'npm publish' does not allow symlinks) --- libs/update-libetpan.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/update-libetpan.sh b/libs/update-libetpan.sh index 56d5ec78..a61bcf82 100755 --- a/libs/update-libetpan.sh +++ b/libs/update-libetpan.sh @@ -73,7 +73,7 @@ update_libetpan() { cp $SRCDIR/libetpan-config.h libetpan/libetpan-config.h mkdir -p libetpan/include/libetpan/ - cp -a $SRCDIR/include/libetpan/*.h libetpan/include/libetpan/ + cp $SRCDIR/include/libetpan/*.h libetpan/include/libetpan/ cp $SRCDIR/config.h libetpan/include/libetpan/ }