emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] elparized-core 1775ea9: Slim configure.ac, blitz rsync


From: Phillip Lord
Subject: [Emacs-diffs] elparized-core 1775ea9: Slim configure.ac, blitz rsync
Date: Sat, 10 Mar 2018 14:57:16 -0500 (EST)

branch: elparized-core
commit 1775ea9040059b4cece1c67a16ff8faba862d7b3
Author: Phillip Lord <address@hidden>
Commit: Phillip Lord <address@hidden>

    Slim configure.ac, blitz rsync
---
 configure.ac            |  1 -
 elpa/bin/deploy-to-core | 22 +++++++++++++++++-----
 2 files changed, 17 insertions(+), 6 deletions(-)

diff --git a/configure.ac b/configure.ac
index c714441..71bcedc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5051,7 +5051,6 @@ AC_SUBST(bitmapdir)
 AC_SUBST(gamedir)
 AC_SUBST(gameuser)
 AC_SUBST(gamegroup)
-AC_SUBST(elpadir)
 ## FIXME? Nothing uses @address@hidden
 ## src/Makefile.in did add LD_SWITCH_X_SITE (as a cpp define) to the
 ## end of LIBX_BASE, but nothing ever set it.
diff --git a/elpa/bin/deploy-to-core b/elpa/bin/deploy-to-core
index 77eafca..917f646 100755
--- a/elpa/bin/deploy-to-core
+++ b/elpa/bin/deploy-to-core
@@ -37,12 +37,24 @@ deploy_source(){
         ## General extensibility point for complicated packages
         ./core-deploy.sh
     else
-        rsync -i --ignore-missing-args *!(tests)*.el ../../../lisp/elpa/$SUBDIR
-        rsync -i --ignore-missing-args *.texi ../../../doc/elpa/$SUBDIR
-        rsync -i --ignore-missing-args *tests*.el 
../../../test/lisp/elpa/$SUBDIR
-        if [ -e tests ]
+        if ls *!(tests)*.el >/dev/null 2>&1;
         then
-            rsync -i --ignore-missing-args tests/*.el 
../../../test/lisp/elpa/$SUBDIR
+            cp -v *!(tests)*.el ../../../lisp/elpa/$SUBDIR
+        fi
+
+        if ls *.texi > /dev/null 2>&1;
+        then
+            cp -v *.texi ../../../lisp/elpa/$SUBDIR
+        fi
+
+        if ls *tests*.el > /dev/null 2>&1;
+        then
+            cp -v *tests*.el ../../../test/lisp/elpa/$SUBDIR
+        fi
+
+        if ls tests/*.el > /dev/null 2>&1;
+        then
+            cp -v tests/*.el ../../../test/lisp/elpa/$SUBDIR
         fi
     fi
 }



reply via email to

[Prev in Thread] Current Thread [Next in Thread]