mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 04:47:14 +02:00
24 lines
826 B
Diff
24 lines
826 B
Diff
The find command used in the upstream Makefile copies identical files
|
|
over eachother without forcing the copy. This patch adds the -f (force)
|
|
option to the find copy command. This is not explicitly needed but does
|
|
seem to reduce a warning.
|
|
|
|
diff --git a/src/spidermonkey/Makefile b/src/spidermonkey/Makefile
|
|
index 99521a2..1641274 100644
|
|
--- a/src/spidermonkey/Makefile
|
|
+++ b/src/spidermonkey/Makefile
|
|
@@ -28,12 +28,12 @@ jsapi: js-buildstamp
|
|
|
|
jslib: js-buildstamp
|
|
cd js/src
|
|
- find . -name "libjs.a" -exec cp {} . \;
|
|
+ find . -name "libjs.a" -exec cp -f {} . \;
|
|
|
|
js-buildstamp:
|
|
mkdir -p js/src/$(OBJDIR)
|
|
CFLAGS="$(SMCFLAGS)" $(MAKE) -C js/src -f Makefile.ref libjs.a
|
|
- find js/src -name "jsautocfg.h" -exec cp {} js/src \;
|
|
+ find js/src -name "jsautocfg.h" -exec cp -f {} js/src \;
|
|
touch js-buildstamp
|
|
|
|
clean:
|