Skip to content

Commit

Permalink
staging: usbip: userspace: rename source directories
Browse files Browse the repository at this point in the history
Rename cmd/ to src/ and lib/ to libsrc/.

Signed-off-by: matt mooney <mfm@muteddisk.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
matt mooney authored and Greg Kroah-Hartman committed May 17, 2011
1 parent 7f27b19 commit f9b9007
Show file tree
Hide file tree
Showing 20 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions drivers/staging/usbip/userspace/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
SUBDIRS = lib cmd
SUBDIRS = libsrc src
includedir=@includedir@/usbip
include_HEADERS = lib/usbip.h lib/usbip_common.h lib/vhci_driver.h lib/stub_driver.h
include_HEADERS := $(addprefix libsrc/, \
usbip.h usbip_common.h vhci_driver.h stub_driver.h)

dist_man_MANS := $(addprefix doc/, usbip.8 usbipd.8 usbip_bind_driver.8)

Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/usbip/userspace/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,5 @@ PKG_CHECK_MODULES(PACKAGE, glib-2.0 >= $GLIB2_REQUIRED)
AC_SUBST(PACKAGE_CFLAGS)
AC_SUBST(PACKAGE_LIBS)

AC_CONFIG_FILES([Makefile lib/Makefile cmd/Makefile])
AC_CONFIG_FILES([Makefile libsrc/Makefile src/Makefile])
AC_OUTPUT
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ usbip_bind_driver_SOURCES = bind-driver.c \
#usbip_bind_driver_LDADD = @PACKAGE_LIBS@

#AM_CPPFLAGS = -I../include -Wall -std=gnu99
INCLUDES = -I$(top_srcdir)/lib
LDADD = ../lib/libusbip.la @PACKAGE_LIBS@
INCLUDES = -I$(top_srcdir)/libsrc
LDADD = ../libsrc/libusbip.la @PACKAGE_LIBS@
EXTRA_CFLAGS = @EXTRA_CFLAGS@
AM_CFLAGS = -Wall -W -Wstrict-prototypes -std=gnu99 $(EXTRA_CFLAGS) @PACKAGE_CFLAGS@ -DUSBIDS_FILE='"@USBIDS_DIR@/usb.ids"'

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit f9b9007

Please sign in to comment.