Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
02f296b3
Commit
02f296b3
authored
Jul 29, 2008
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
As autopoint copies po/Makefile.in.in we have to patch it so that it has our modifications
parent
42942898
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
0 deletions
+25
-0
bootstrap
bootstrap
+3
-0
po/makefile-qt4.patch
po/makefile-qt4.patch
+22
-0
No files found.
bootstrap
View file @
02f296b3
...
@@ -112,6 +112,9 @@ rm -f po/Makevars.template ABOUT-NLS
...
@@ -112,6 +112,9 @@ rm -f po/Makevars.template ABOUT-NLS
echo
>
ABOUT-NLS
echo
>
ABOUT-NLS
mv
-f
INSTALL.git INSTALL
mv
-f
INSTALL.git INSTALL
# Patch po/Makefile.in.in but it's not a drama if it fails
patch
-p1
< po/makefile-qt4.patch
||
true
##
##
## files which need to be regenerated
## files which need to be regenerated
##
##
...
...
po/makefile-qt4.patch
0 → 100644
View file @
02f296b3
commit 8e13f257224e02c91c3b40db99ba5cf9ef52f542
Author: Christophe Mutricy <xtophe@videolan.org>
Date: Sun Jul 27 00:10:51 2008 +0100
Hack to take care of qt strings with ampersand
We will need to reapply this diff when we upgrade Makefile.in.in from a
newer gettext
diff --git a/po/Makefile.in.in b/po/Makefile.in.in
index fecf500..13256d8 100644
--- a/po/Makefile.in.in
+++ b/po/Makefile.in.in
@@ -166,6 +166,8 @@
$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed
--msgid-bugs-address="$$msgid_bugs_address" \
;; \
esac
+ sed 's/&/\&/' $(DOMAIN).po > $(DOMAIN).po1 && \
+ mv $(DOMAIN).po1 $(DOMAIN).po;
test ! -f $(DOMAIN).po || { \
if test -f $(srcdir)/$(DOMAIN).pot; then \
sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment