After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 725373 - make is used in libanjuta/interfaces/Makefile.am
make is used in libanjuta/interfaces/Makefile.am
Status: RESOLVED FIXED
Product: anjuta
Classification: Applications
Component: libanjuta
unspecified
Other Linux
: Normal normal
: ---
Assigned To: Naba Kumar
Anjuta maintainers
Depends on:
Blocks:
 
 
Reported: 2014-02-28 06:19 UTC by Ting-Wei Lan
Modified: 2014-03-02 11:29 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Ting-Wei Lan 2014-02-28 06:19:23 UTC
In libanjuta/interfaces/Makefile.am:

29 iface-built.stamp: libanjuta.idl anjuta-idl-compiler.pl                          
30     savedir=`pwd` && \                                                           
31     cd $(srcdir) && perl anjuta-idl-compiler.pl libanjuta && \                   
32     echo 'GInterface' > hierarchy.txt && grep -e '^[[:space:]|\t]*interface' \   
33     libanjuta.idl  | sed -e 's/\binterface\b\s*/\t/' | sed -e 's/\t/    /g' \    
34     >> hierarchy.txt && \                                                        
35     touch iface-built.stamp && \                                                 
36     echo "changing to $$savedir" && \                                            
37     cd $$savedir && \                                                            
38     make                       


make is used directly on line 38, but users may use different make command such as gmake. We should change it to $(MAKE).
Comment 1 Sébastien Granjoux 2014-03-02 11:29:13 UTC
Thank for reporting this. I have just fixed it in the master branch.