]> source.dussan.org Git - jquery.git/commitdiff
Merge when updating submodules on make 277/head
authorCarl Fürstenberg <azatoth@gmail.com>
Thu, 17 Mar 2011 18:50:53 +0000 (19:50 +0100)
committerCarl Fürstenberg <azatoth@gmail.com>
Thu, 17 Mar 2011 18:50:53 +0000 (19:50 +0100)
When  running make, the submodule update will remove all local changes.
Adding flag --rebase or --merge does solve the issue. rebase will
probably make it cleaner, but it might stop on conflict, thus --merge
will result in fewer (probably none).

Makefile

index 84816a19e1cfcd7b6bb79cc078881b7a1bea6384..525d3a1974d7b38a2f295c0b7c968fee92abdc43 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -49,7 +49,7 @@ ${DIST_DIR}:
        @@mkdir -p ${DIST_DIR}
 
 init:
-       @@if [ -d .git ]; then git submodule update --init --recursive; fi
+       @@if [ -d .git ]; then git submodule update --init --recursive --merge; fi
 
 jquery: init ${JQ}
 jq: init ${JQ}