all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* small fix for mac/make-package
@ 2004-03-26 11:41 Andreas Vögele
  0 siblings, 0 replies; only message in thread
From: Andreas Vögele @ 2004-03-26 11:41 UTC (permalink / raw)


Hi,

can anyone apply the included patch to mac/make-package?  I sent this
patch to the emacs-pretest-bug list almost two weeks ago but it seems
that there are no Mac developers on that list.

When building the CVS version with mac/make-package the build fails
because of a problem with relative path names in lisp/Makefile.in.  It
seems that the pattern "*/.*" in lisp/Makefile.in wrongly matches path
names ending with "/..":

setwins=subdirs=`find $$wd -type d -print`; \
        for file in $$subdirs; do \
           case $$file in */Old | */RCS | */CVS | */CVS/* | */.* | */.*/* | */=* ) ;; \
                *) wins="$$wins $$file" ;; \
           esac; \
        done

This problem can easily be fixed by using an absolute path name in
mac/make-package:

--- make-package.~1.20.~	2004-03-25 12:14:35.000000000 +0100
+++ make-package	2004-03-15 15:13:27.000000000 +0100
@@ -41,7 +41,7 @@
 
 progname="$0"
 
-srcdir="`pwd`/.."
+srcdir="`cd .. && pwd`"
 builddir=${srcdir}
 
 ## Default location to place it is /usr/local

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-03-26 11:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-03-26 11:41 small fix for mac/make-package Andreas Vögele

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.