diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-05 06:18:33 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-05 06:18:33 +0000 |
commit | d7839f55b4d4f73d4d40baafc792382b8cd0dace (patch) | |
tree | 9795065832e97f0a8142cf796c257bf31f711f03 /libc/unistd/Makefile | |
parent | 2d858d53fdc3a40c52e83ce6c58f37ba485a1828 (diff) |
Patch from Jean-Yves Avenard to move the getopt globals to their
own file, since at least on SH, weak variables with initial values
(.data stuff) were not working. Moving these to their own file
seems to be a good way to handle it.
Diffstat (limited to 'libc/unistd/Makefile')
-rw-r--r-- | libc/unistd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/unistd/Makefile b/libc/unistd/Makefile index 0299a0a24..13da721a8 100644 --- a/libc/unistd/Makefile +++ b/libc/unistd/Makefile @@ -26,7 +26,7 @@ LIBC=$(TOPDIR)libc.a DIRS:= CSRC=execl.c execlp.c execv.c execvep.c execvp.c getcwd.c getopt.c \ - sleep.c getpass.c sysconf_src.c + sleep.c getpass.c sysconf_src.c getopt_vars.c # TESTING -- comment this out if it breaks for you ifeq ($(TARGET_ARCH), $(NATIVE_ARCH)) |