all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Regis <xu.regis@gmail.com>
To: 7220@debbugs.gnu.org
Subject: bug#7220: [build] target really-oldXMenu doesn't work
Date: Fri, 15 Oct 2010 13:48:50 +0800	[thread overview]
Message-ID: <4CB7EB42.70900@gmail.com> (raw)

$ pwd
/home/bahamut/emacs/emacs.git/src
bahamut@Harmony-L3NEK37:~/emacs/emacs.git/src [master]
$ make really-oldXMenu
cd ; make  \
     CC='gcc' CFLAGS='-g -O2' MAKE='make'
make[1]: Entering directory `/home/bahamut'
make[1]: *** No targets specified and no makefile found.  Stop.
make[1]: Leaving directory `/home/bahamut'
make: *** [really-oldXMenu] Error 2

After investigation, I found that variable name $(oldxmenudir) in
src/Makefile.in should be $(oldXMenudir), following patch works well for
me:

Index: src/Makefile.in
=====================================================================
--- src/Makefile.in
+++ src/Makefile.in
@@ -660,7 +660,7 @@ really-lwlib:
  .PHONY: really-lwlib

  really-oldXMenu:
-	cd $(oldxmenudir); $(MAKE) $(MFLAGS) \
+	cd $(oldXMenudir); $(MAKE) $(MFLAGS) \
      CC='$(CC)' CFLAGS='$(CFLAGS)' MAKE='$(MAKE)'
  	@true  # make -t should not create really-oldXMenu.
  .PHONY: really-oldXMenu


-- 
Best Regards,
Regis.





             reply	other threads:[~2010-10-15  5:48 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-15  5:48 Regis [this message]
     [not found] <mailman.9.1287124941.11126.bug-gnu-emacs@gnu.org>
2010-10-15  7:49 ` bug#7220: [build] target really-oldXMenu doesn't work Tassilo Horn

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4CB7EB42.70900@gmail.com \
    --to=xu.regis@gmail.com \
    --cc=7220@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.