Summary: | gettext package not usable | ||
---|---|---|---|
Product: | [Applications] kdevelop | Reporter: | info |
Component: | kdevelop 2.x (obsolete) | Assignee: | KDevelop-Devel List <kdevelop-devel> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 2.1.2 | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | patch for admin/Makefile.common |
Description
info
2002-07-13 06:36:51 UTC
Created attachment 179 [details]
patch for admin/Makefile.common
I had similar problems using KDE 3.0.3, but in addition the cvs.sh file was not
found when the rule "package-merge" was applied. Therefore I simply copied the
recursive admin directory search stuff from the other rule to the
"package-merge" rule. That's not elegant but it works.
For me it was not necessary to patch cvs.sh, when I have set the environment
variable KDEDIR correctly (on my system to /opt/kde3, on other systems possibly
to /usr, can be done within the file startkde).
Subject: kde-common/admin CVS commit by coolo: - MAKE=$(MAKE) $(SHELL) $$admindir/cvs.sh $@ - -package-merge: - @MAKE=$(MAKE) POFILES=$(POFILES) PACKAGE=$(PACKAGE) \ - $(SHELL) admin/cvs.sh package-merge + if test "$@" = "package-merge"; then \ + MAKE=$(MAKE) POFILES="$(POFILES)" PACKAGE="$(PACKAGE)" \ + $(SHELL) $$admindir/cvs.sh package-merge ;\ + else MAKE=$(MAKE) $(SHELL) $$admindir/cvs.sh $@ ;\ + fi CCMAIL: 45086-close@bugs.kde.org --------------------------------------------------------------------------- M +6 -6 1.154 1.155 Makefile.common |