[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
unterminated argument list invoking macro "Concat"
> 千葉市中央区長洲
> 藤原 誠
藤> これ以外に、とても小さな変更が二か所必要だったと思います。
藤> (compile を通すため)。どこかに書いたのですが、すぐには出て来ないの
藤> で、後でお知らせします。
次のようになりますので、
config/cf/Imake.rules:1593: unterminated argument list invoking macro "Concat"
./config/imake/imake: Exit code 1.
は、次の変更をします。もう一つあった気がするのですが、それは
また分った時に..
--- config/cf/Imake.rules-orig 2004-10-15 16:33:38.000000000 +0900
+++ config/cf/Imake.rules 2004-10-15 16:54:26.000000000 +0900
@@ -1584,7 +1584,7 @@
sed -e 's:^.::' -e 's:[^/.][^/]*:..:'g`; \ @@\
cd Concat($(DESTDIR),opath); \ @@\
if [ -f lfile -a ! -h lfile ]; then \ @@\
- cp -p lfile Concat($(DESTDIR),npath/cfile; \ @@\
+ cp -p lfile Concat($(DESTDIR),npath/cfile); \ @@\
fi; \ @@\
$(RM) -r lfile; \ @@\
$(LN) Concat($${RELPATH},npath/cfile) lfile; \ @@\
---
(藤原)