Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
1775ea90
Commit
1775ea90
authored
Mar 10, 2018
by
Phillip Lord
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Slim configure.ac, blitz rsync
parent
239379f2
Pipeline
#1
failed with stage
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
6 deletions
+17
-6
configure.ac
configure.ac
+0
-1
elpa/bin/deploy-to-core
elpa/bin/deploy-to-core
+17
-5
No files found.
configure.ac
View file @
1775ea90
...
...
@@ -5051,7 +5051,6 @@ AC_SUBST(bitmapdir)
AC_SUBST(gamedir)
AC_SUBST(gameuser)
AC_SUBST(gamegroup)
AC_SUBST(elpadir)
## FIXME? Nothing uses @LD_SWITCH_X_SITE@.
## src/Makefile.in did add LD_SWITCH_X_SITE (as a cpp define) to the
## end of LIBX_BASE, but nothing ever set it.
...
...
elpa/bin/deploy-to-core
View file @
1775ea90
...
...
@@ -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
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment