bug-gsrc
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug-gsrc] dismal, bad install


From: carl
Subject: [bug-gsrc] dismal, bad install
Date: Sat, 19 Jan 2013 18:50:54 -0800
User-agent: Mutt/1.5.21 (2010-09-15)


problem with  make -C gnu/dismal install

install: cannot stat 'work/dismal-1.4/*.{el,elc}': No such file or directory
make: *** [install-el] Error 1

from Makefile:
        for ell in $(WORKSRC)/*.{el,elc}; do  \

The problem is { and } have special meaning to "make" so don't
get through to the shell.

The fix is:


        for el in $(WORKSRC)/*.el  $(WORKSRC)/*.elc ; do \


Took a couple hours to figure that one out...



reply via email to

[Prev in Thread] Current Thread [Next in Thread]