Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
linux-seco-imx
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Jira
Code
Merge requests
11
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Clea OS
bsp
nxp
linux-seco-imx
Commits
f5ac0641
Commit
f5ac0641
authored
13 years ago
by
Dominik Brodowski
Browse files
Options
Downloads
Patches
Plain Diff
cpupowerutils: do not update po files on each and every compile
Signed-off-by:
Dominik Brodowski
<
linux@dominikbrodowski.net
>
parent
7443af9c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/power/cpupower/Makefile
+16
-7
16 additions, 7 deletions
tools/power/cpupower/Makefile
with
16 additions
and
7 deletions
tools/power/cpupower/Makefile
+
16
−
7
View file @
f5ac0641
...
...
@@ -95,6 +95,8 @@ HOSTCC = gcc
# set up PWD so that older versions of make will work with our build.
PWD
=
$(
shell
pwd
)
GMO_FILES
=
${
shell
for
HLANG
in
${
LANGUAGES
};
do
echo
po/
$$
HLANG.gmo
;
done
;}
export
CROSS
CC
AR
STRIP
RANLIB
CFLAGS
LDFLAGS
LIB_OBJS
# check if compiler option is supported
...
...
@@ -134,7 +136,7 @@ CFLAGS += -pipe
ifeq
($(strip $(NLS)),true)
INSTALL_NLS
+=
install-gmo
COMPILE_NLS
+=
upd
ate-gmo
COMPILE_NLS
+=
cre
ate-gmo
endif
ifeq
($(strip $(CPUFRQ_BENCH)),true)
...
...
@@ -195,14 +197,22 @@ cpupower: $(UTIL_OBJS) libcpufreq.so.$(LIB_MAJ)
$(
QUIET
)
$(
STRIPCMD
)
$@
po/$(PACKAGE).pot
:
$(UTIL_SRC)
@
xgettext
--default-domain
=
$(
PACKAGE
)
--add-comments
\
$(
ECHO
)
" GETTEXT "
$@
$(
QUIET
)
xgettext
--default-domain
=
$(
PACKAGE
)
--add-comments
\
--keyword
=
_
--keyword
=
N_
$(
UTIL_SRC
)
&&
\
test
-f
$(
PACKAGE
)
.po
&&
\
mv
-f
$(
PACKAGE
)
.po po/
$(
PACKAGE
)
.pot
update-gmo
:
po/$(PACKAGE).pot
@
for
HLANG
in
$(
LANGUAGES
);
do
\
echo
-n
"Translating
$$
HLANG "
;
\
po/%.gmo
:
po/%.po
$(
ECHO
)
" MSGFMT "
$@
$(
QUIET
)
msgfmt
-o
$@
po/
$*
.po
create-gmo
:
${GMO_FILES}
update-po
:
po/$(PACKAGE).pot
$(
ECHO
)
" MSGMRG "
$@
$(
QUIET
)
@for HLANG
in
$(
LANGUAGES
);
do
\
echo
-n
"Updating
$$
HLANG "
;
\
if
msgmerge po/
$$
HLANG.po po/
$(
PACKAGE
)
.pot
-o
\
po/
$$
HLANG.new.po
;
then
\
mv
-f
po/
$$
HLANG.new.po po/
$$
HLANG.po
;
\
...
...
@@ -210,7 +220,6 @@ update-gmo: po/$(PACKAGE).pot
echo
"msgmerge for
$$
HLANG failed!"
;
\
rm
-f
po/
$$
HLANG.new.po
;
\
fi
;
\
msgfmt
--statistics
-o
po/
$$
HLANG.gmo po/
$$
HLANG.po
;
\
done
;
compile-bench
:
libcpufreq.so.$(LIB_MAJ)
...
...
@@ -268,5 +277,5 @@ uninstall:
rm
-f
$(
DESTDIR
)${
localedir
}
/
$$
HLANG/LC_MESSAGES/cpupowerutils.mo
;
\
done
;
.PHONY
:
all utils libcpufreq update-po
upd
ate-gmo install-lib install-tools install-man install-gmo install uninstall
\
.PHONY
:
all utils libcpufreq update-po
cre
ate-gmo install-lib install-tools install-man install-gmo install uninstall
\
clean
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment