summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2018-08-18 21:05:48 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2018-08-18 21:05:51 +0100
commit183852df7766ccc942fde1513a82891098306574 (patch)
tree31f937ba806dfbace00bd2fbb6c3c8d4b4a608c4
parent0c79122a1ff137fe2410940e326fd77ff3ee2ad9 (diff)
Replace @abs_builddir@ with `pwd` to build reproducibly
This is in a commented-out bit of the file. I prefer this approach to the one suggested in #902179, because this is more like what seems to have been done upstream to the similar vm-autoloads.el target. Closes:#902179. Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
-rw-r--r--debian/changelog2
-rwxr-xr-xlisp/Makefile.in2
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index ba9022c..e0e3d8f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,8 @@ vm (8.2.0b-3~) unstable; urgency=medium
* Introduce an upstream .gitignore.
* Introduce a debian/.gitignore.
* Cope with un-versioned emacs. Closes:#900813.
+ * Replace @abs_builddir@ with `pwd` to build reproducibly,
+ in commented-out bit of the file. Closes:#902179.
--
diff --git a/lisp/Makefile.in b/lisp/Makefile.in
index 342f6dd..dd0d5d8 100755
--- a/lisp/Makefile.in
+++ b/lisp/Makefile.in
@@ -159,7 +159,7 @@ auto-autoloads.el: $(SOURCES:%=@srcdir@/%)
-$(RM) -f $@
# (build_dir=`pwd`; cd "@srcdir@"; \
# $(EMACS_PROG) $(FLAGS) -l autoload \
-# -f vm-built-autoloads "@abs_builddir@/$@" "`pwd`")
+# -f vm-built-autoloads "`pwd`/$@" "`pwd`")
"$(EMACS_PROG)" $(FLAGS) \
-eval "$(AUTOLOAD_PACKAGE_NAME)" \
-eval "$(AUTOLOAD_FILE)" \