Skip to content

Commit

Permalink
sun4i: gpu: mali: fix of build error, caused by * in ($wildcard) comm…
Browse files Browse the repository at this point in the history
…and of Kbuild
  • Loading branch information
Yuuki committed Jan 9, 2013
1 parent 3358ff6 commit c98f745
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drivers/gpu/mali/mali/Kbuild
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ DRIVER_DIR=$(src)
# The ARM proprietary product will only include the license/proprietary directory
# The GPL product will only include the license/gpl directory

ifeq ($(wildcard $(srctree)/$(DRIVER_DIR)/linux/license/gpl/*),)
ifeq ($(wildcard $(srctree)/$(DRIVER_DIR)/linux/license/gpl/),)
ccflags-y += -I$(srctree)/$(DRIVER_DIR)/linux/license/proprietary
# Disable profiling for proprietary
override USING_PROFILING := 0
Expand Down
2 changes: 1 addition & 1 deletion drivers/gpu/mali/ump/Kbuild
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ccflags-$(CONFIG_UMP_DEBUG) += -DDEBUG
# The ARM proprietary product will only include the license/proprietary directory
# The GPL product will only include the license/gpl directory

ifeq ($(wildcard $(srctree)/$(src)/linux/license/gpl/*),)
ifeq ($(wildcard $(srctree)/$(src)/linux/license/gpl/),)
ccflags-y += -I$(srctree)/$(src)/linux/license/proprietary
else
ccflags-y += -I$(srctree)/$(src)/linux/license/gpl
Expand Down

0 comments on commit c98f745

Please sign in to comment.