diff options
| author | Phillip Lord | 2018-03-10 19:56:58 +0000 |
|---|---|---|
| committer | Phillip Lord | 2018-03-10 19:56:58 +0000 |
| commit | 1775ea9040059b4cece1c67a16ff8faba862d7b3 (patch) | |
| tree | c5e5ad75c1db43dd4fccbee3d4aa789230bcd2fb | |
| parent | 239379f2e6bf9ed664f4bc932b1f0750dd20ce81 (diff) | |
| download | emacs-elparized-core.tar.gz emacs-elparized-core.zip | |
Slim configure.ac, blitz rsyncelparized-core
| -rw-r--r-- | configure.ac | 1 | ||||
| -rwxr-xr-x | elpa/bin/deploy-to-core | 22 |
2 files changed, 17 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index c7144414dc6..71bcedca381 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -5051,7 +5051,6 @@ AC_SUBST(bitmapdir) | |||
| 5051 | AC_SUBST(gamedir) | 5051 | AC_SUBST(gamedir) |
| 5052 | AC_SUBST(gameuser) | 5052 | AC_SUBST(gameuser) |
| 5053 | AC_SUBST(gamegroup) | 5053 | AC_SUBST(gamegroup) |
| 5054 | AC_SUBST(elpadir) | ||
| 5055 | ## FIXME? Nothing uses @LD_SWITCH_X_SITE@. | 5054 | ## FIXME? Nothing uses @LD_SWITCH_X_SITE@. |
| 5056 | ## src/Makefile.in did add LD_SWITCH_X_SITE (as a cpp define) to the | 5055 | ## src/Makefile.in did add LD_SWITCH_X_SITE (as a cpp define) to the |
| 5057 | ## end of LIBX_BASE, but nothing ever set it. | 5056 | ## end of LIBX_BASE, but nothing ever set it. |
diff --git a/elpa/bin/deploy-to-core b/elpa/bin/deploy-to-core index 77eafca0c16..917f6469de7 100755 --- a/elpa/bin/deploy-to-core +++ b/elpa/bin/deploy-to-core | |||
| @@ -37,12 +37,24 @@ deploy_source(){ | |||
| 37 | ## General extensibility point for complicated packages | 37 | ## General extensibility point for complicated packages |
| 38 | ./core-deploy.sh | 38 | ./core-deploy.sh |
| 39 | else | 39 | else |
| 40 | rsync -i --ignore-missing-args *!(tests)*.el ../../../lisp/elpa/$SUBDIR | 40 | if ls *!(tests)*.el >/dev/null 2>&1; |
| 41 | rsync -i --ignore-missing-args *.texi ../../../doc/elpa/$SUBDIR | ||
| 42 | rsync -i --ignore-missing-args *tests*.el ../../../test/lisp/elpa/$SUBDIR | ||
| 43 | if [ -e tests ] | ||
| 44 | then | 41 | then |
| 45 | rsync -i --ignore-missing-args tests/*.el ../../../test/lisp/elpa/$SUBDIR | 42 | cp -v *!(tests)*.el ../../../lisp/elpa/$SUBDIR |
| 43 | fi | ||
| 44 | |||
| 45 | if ls *.texi > /dev/null 2>&1; | ||
| 46 | then | ||
| 47 | cp -v *.texi ../../../lisp/elpa/$SUBDIR | ||
| 48 | fi | ||
| 49 | |||
| 50 | if ls *tests*.el > /dev/null 2>&1; | ||
| 51 | then | ||
| 52 | cp -v *tests*.el ../../../test/lisp/elpa/$SUBDIR | ||
| 53 | fi | ||
| 54 | |||
| 55 | if ls tests/*.el > /dev/null 2>&1; | ||
| 56 | then | ||
| 57 | cp -v tests/*.el ../../../test/lisp/elpa/$SUBDIR | ||
| 46 | fi | 58 | fi |
| 47 | fi | 59 | fi |
| 48 | } | 60 | } |