mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
Check for mkdir -p or equivalent, and use that rather than simple mkdir to create the modules, modules/gconf and modules/rtp directories.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@2077 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
19ee3b6e3f
commit
04d7a7ef58
2 changed files with 7 additions and 3 deletions
|
|
@ -79,6 +79,10 @@ esac
|
|||
|
||||
#### Checks for programs. ####
|
||||
|
||||
# mkdir -p
|
||||
|
||||
AC_PROG_MKDIR_P
|
||||
|
||||
# CC
|
||||
|
||||
AC_PROG_CC
|
||||
|
|
|
|||
|
|
@ -1151,9 +1151,9 @@ EXTRA_DIST += $(SYMDEF_FILES)
|
|||
BUILT_SOURCES += $(SYMDEF_FILES)
|
||||
|
||||
$(SYMDEF_FILES): modules/module-defs.h.m4
|
||||
-mkdir modules
|
||||
-mkdir modules/gconf
|
||||
-mkdir modules/rtp
|
||||
$(MKDIR_P) modules
|
||||
$(MKDIR_P) modules/gconf
|
||||
$(MKDIR_P) modules/rtp
|
||||
$(M4) -Dfname="$@" $< > $@
|
||||
|
||||
# Simple protocol
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue