diff options
| author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-09-11 16:42:14 +0900 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-03-17 16:10:18 +0100 |
| commit | 721e7cd6c56abe7d5696695e38ec4a77c631c3bd (patch) | |
| tree | 653a4205af6d55d7fd940e20941e83a51f0c4cb1 | |
| parent | 6f5c47f0faed69f2e78e733fb18261854979e79f (diff) | |
| download | linux-721e7cd6c56abe7d5696695e38ec4a77c631c3bd.tar.gz linux-721e7cd6c56abe7d5696695e38ec4a77c631c3bd.tar.bz2 linux-721e7cd6c56abe7d5696695e38ec4a77c631c3bd.zip | |
alpha: add $(src)/ rather than $(obj)/ to make source file path
commit 5ed78e5523fd9ba77b8444d380d54da1f88c53fc upstream.
$(ev6-y)divide.S is a source file, not a build-time generated file.
So, it should be prefixed with $(src)/ rather than $(obj)/.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | arch/alpha/lib/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/alpha/lib/Makefile b/arch/alpha/lib/Makefile index 59660743237c..7b694fed382c 100644 --- a/arch/alpha/lib/Makefile +++ b/arch/alpha/lib/Makefile @@ -46,11 +46,11 @@ AFLAGS___remqu.o = -DREM AFLAGS___divlu.o = -DDIV -DINTSIZE AFLAGS___remlu.o = -DREM -DINTSIZE -$(obj)/__divqu.o: $(obj)/$(ev6-y)divide.S +$(obj)/__divqu.o: $(src)/$(ev6-y)divide.S $(cmd_as_o_S) -$(obj)/__remqu.o: $(obj)/$(ev6-y)divide.S +$(obj)/__remqu.o: $(src)/$(ev6-y)divide.S $(cmd_as_o_S) -$(obj)/__divlu.o: $(obj)/$(ev6-y)divide.S +$(obj)/__divlu.o: $(src)/$(ev6-y)divide.S $(cmd_as_o_S) -$(obj)/__remlu.o: $(obj)/$(ev6-y)divide.S +$(obj)/__remlu.o: $(src)/$(ev6-y)divide.S $(cmd_as_o_S) |
