Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
84d63bc7
Commit
84d63bc7
authored
Apr 26, 2004
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* debian/rules: fixed shell syntax.
parent
15d01be8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
debian/rules
debian/rules
+6
-6
No files found.
debian/rules
View file @
84d63bc7
...
...
@@ -87,7 +87,7 @@ configure-stamp:
# Check that we have an ffmpeg tree in here (can be a symlink)
test -d extras/ffmpeg
if test ! '(' -d CVS -o .svn ')'; then \
if test ! '(' -d CVS -o
-d
.svn ')'; then \
cd extras/ffmpeg \
&& CC=$(CC) ./configure --enable-pp --enable-gpl --enable-zlib --disable-debug \
&& cd libavcodec \
...
...
@@ -96,7 +96,7 @@ configure-stamp:
# Check that we have an faad2 tree in here (can be a symlink)
test -d extras/faad2
if test ! '(' -d CVS -o .svn ')'; then \
if test ! '(' -d CVS -o
-d
.svn ')'; then \
cd extras/faad2 \
&& touch `find . -name configure.in` \
&& touch `find . -name aclocal.m4` \
...
...
@@ -125,7 +125,7 @@ build-stamp:
ifneq ($(shell dpkg-architecture -qDEB_BUILD_GNU_CPU),i386)
# Hackety hackety hack
if test ! '(' -d CVS -o .svn ')'; then \
if test ! '(' -d CVS -o
-d
.svn ')'; then \
cd extras/ffmpeg/libavcodec \
&& $(MAKE) clean \
&& rm -f Makefile.pic \
...
...
@@ -135,7 +135,7 @@ ifneq ($(shell dpkg-architecture -qDEB_BUILD_GNU_CPU),i386)
fi
# HACKETY HACKETY HACK
if test ! '(' -d CVS -o .svn ')'; then \
if test ! '(' -d CVS -o
-d
.svn ')'; then \
cd extras/faad2/libfaad \
&& $(MAKE) clean \
&& $(MAKE) AM_CFLAGS=-fPIC; \
...
...
@@ -154,12 +154,12 @@ clean:
# Check that we have an ffmpeg tree in here (can be a symlink)
test -d extras/ffmpeg
-if test ! '(' -d CVS -o .svn ')'; then \
-if test ! '(' -d CVS -o
-d
.svn ')'; then \
cd extras/ffmpeg && $(MAKE) distclean; \
fi
# Check that we have an faad2 tree in here (can be a symlink)
test -d extras/faad2
-if test ! '(' -d CVS -o .svn ')'; then \
-if test ! '(' -d CVS -o
-d
.svn ')'; then \
cd extras/faad2 && $(MAKE) distclean; \
fi
...
...
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