Commit c7995313981062a9b20fda9e5fb9a1eef1c9afa2
1 parent
36ff590d
Exists in
master
and in
3 other branches
Fixing linux package build.
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
Makefile.in
... | ... | @@ -336,7 +336,9 @@ install-dev: \ |
336 | 336 | |
337 | 337 | install-linux-dev: |
338 | 338 | |
339 | - @rm -f $(DESTDIR)$(libdir)/$(LIBNAME)@DLLEXT@ | |
339 | + @$(MKDIR) \ | |
340 | + $(DESTDIR)$(libdir) | |
341 | + | |
340 | 342 | @$(LN_S) \ |
341 | 343 | $(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ \ |
342 | 344 | $(DESTDIR)$(libdir)/$(LIBNAME)@DLLEXT@ | ... | ... |