diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2019-12-24 14:27:51 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2019-12-24 14:27:51 +0000 |
commit | d9b6a5820f195ef681d7cd15d70a184265b37a94 (patch) | |
tree | 49f952f89c5e6aa0992a0e45fdba636ab0d2bbca /package/targets.mak | |
parent | 2a96bc93c24f34a972740da3e7df031a2d36e7cb (diff) | |
download | execline-d9b6a5820f195ef681d7cd15d70a184265b37a94.tar.xz |
Add posix-umask; prepare for 2.6.0.0
Diffstat (limited to 'package/targets.mak')
-rw-r--r-- | package/targets.mak | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/targets.mak b/package/targets.mak index 824fc26..b502988 100644 --- a/package/targets.mak +++ b/package/targets.mak @@ -52,9 +52,12 @@ LIB_DEFS := EXECLINE=execline ifeq ($(PEDANTIC_POSIX),1) -BIN_TARGETS += posix-cd +BIN_TARGETS += posix-cd posix-umask $(DESTDIR)$(bindir)/cd: $(DESTDIR)$(bindir)/posix-cd exec ./tools/install.sh -l posix-cd $(DESTDIR)$(bindir)/cd +$(DESTDIR)$(bindir)/umask: $(DESTDIR)$(bindir)/posix-umask + exec ./tools/install.sh -l posix-umask $(DESTDIR)$(bindir)/umask + endif |