-
Notifications
You must be signed in to change notification settings - Fork 212
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make hostpath Don't give expected output #207
Comments
/assign |
Works for me. I'm using:
I've not checked whether the latter is part of POSIX make or specific to GNU Make. |
Hi @pohly Thanks for input , could you please suggest is there any pre-requisite i have to follow for running the command make hostpath in my envoirment. Is the GNU Make is specific to be at 4.2.1 version? Because i am still facing issue in that , only command is working for me is when i change this to make all or make. Please Suggest |
Now I get it. It's failing for your because you literally are running That simply isn't a valid invocation because there is no such build target, as make is pointing out. If you want to build the binary, use |
@pohly Yes when i use without build target then it works fine for me i.e by simply running make command , i will be closing this issue. |
/close |
@Kartik494: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
78c0fb7 Merge pull request kubernetes-csi#208 from jsafrane/skip-selinux 36e433e Skip SELinux tests in CI by default 348d4a9 Merge pull request kubernetes-csi#207 from RaunakShah/reviewers 1efc272 Merge pull request kubernetes-csi#206 from RaunakShah/update-prow 7d410d8 Changes to csi prow to run e2e tests in sidecars cfa5a75 Merge pull request kubernetes-csi#203 from humblec/test-vendor 4edd1d8 Add RaunakShah to CSI reviewers group 7ccc959 release tools update to 1.19 git-subtree-dir: release-tools git-subtree-split: 78c0fb7
78c0fb7 Merge pull request kubernetes-csi#208 from jsafrane/skip-selinux 36e433e Skip SELinux tests in CI by default 348d4a9 Merge pull request kubernetes-csi#207 from RaunakShah/reviewers 1efc272 Merge pull request kubernetes-csi#206 from RaunakShah/update-prow 7d410d8 Changes to csi prow to run e2e tests in sidecars cfa5a75 Merge pull request kubernetes-csi#203 from humblec/test-vendor 4edd1d8 Add RaunakShah to CSI reviewers group 7ccc959 release tools update to 1.19 git-subtree-dir: release-tools git-subtree-split: 78c0fb7
Add RaunakShah to CSI reviewers group
When i run command "make hostpath" from my root directory i got the error as "make: *** No rule to make target 'hostpath'. Stop."
and in make file the argument is used for build is: all
CMDS=hostpathplugin
all: build
include release-tools/build.make
However when i changes the argument all to hostpath then the command "make hostpath" is executed
CMDS=hostpathplugin
hostpath: build
include release-tools/build.make
So in Docs should we update make hostpath command to make all ?
The text was updated successfully, but these errors were encountered: