Commit 4cab09f65489893aa1b0815547485f79251d329a
1 parent
295ad9b6
Exists in
master
and in
1 other branch
Fixing build.
Showing
2 changed files
with
7 additions
and
7 deletions
Show diff stats
Makefile.in
| ... | ... | @@ -304,21 +304,21 @@ install: \ |
| 304 | 304 | |
| 305 | 305 | # Install SDK |
| 306 | 306 | |
| 307 | - @mkdir -p $(DESTDIR)$(includedir)/$(LIBNAME) | |
| 307 | + @mkdir -p $(DESTDIR)$(includedir)/v3270 | |
| 308 | 308 | |
| 309 | 309 | @$(INSTALL_DATA) \ |
| 310 | 310 | src/include/v3270/*.h \ |
| 311 | - $(DESTDIR)$(includedir)/$(LIBNAME) | |
| 311 | + $(DESTDIR)$(includedir)/v3270 | |
| 312 | 312 | |
| 313 | 313 | @$(INSTALL_DATA) \ |
| 314 | 314 | src/include/v3270.h \ |
| 315 | - $(DESTDIR)$(includedir)/$(LIBNAME).h | |
| 315 | + $(DESTDIR)$(includedir)/v3270.h | |
| 316 | 316 | |
| 317 | 317 | # Install PKG-CONFIG files |
| 318 | 318 | @mkdir -p $(DESTDIR)$(libdir)/pkgconfig |
| 319 | 319 | @$(INSTALL_DATA) \ |
| 320 | - $(LIBNAME).pc \ | |
| 321 | - $(DESTDIR)$(libdir)/pkgconfig/$(LIBNAME).pc | |
| 320 | + libv3270.pc \ | |
| 321 | + $(DESTDIR)$(libdir)/pkgconfig/v3270.pc | |
| 322 | 322 | |
| 323 | 323 | |
| 324 | 324 | #---[ Misc Targets ]--------------------------------------------------------------------- | ... | ... |
libv3270.pc.in
| ... | ... | @@ -10,7 +10,7 @@ sdk_version=@LIB3270_SDK_VERSION@ |
| 10 | 10 | Name: @PACKAGE_NAME@ |
| 11 | 11 | Description: @PACKAGE_DESCRIPTION@ |
| 12 | 12 | Version: @PACKAGE_VERSION@ |
| 13 | -Libs: -L\@libdir@ -lv3270 | |
| 14 | -Libs.private: -l3270 | |
| 13 | +Libs: -L\@libdir@ -lv@LIB3270_NAME@ | |
| 14 | +Libs.private: -l@LIB3270_NAME@ | |
| 15 | 15 | Cflags: -I@includedir@ |
| 16 | 16 | ... | ... |