Commit 7d4e7bf32075865fbd786584df27832075f68639
1 parent
8b93eb05
Exists in
master
and in
79 other branches
Makefile: fix last reference to PROJECT in all caps
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
Makefile
... | ... | @@ -12,6 +12,6 @@ $(packages): |
12 | 12 | |
13 | 13 | upload: |
14 | 14 | mkdir -p obs |
15 | - if test -d obs/$(project)/$(package); then (cd obs/$(project)/$(package) && osc update); else (cd obs && osc checkout $(project) $(PACKAGE)); fi | |
15 | + if test -d obs/$(project)/$(package); then (cd obs/$(project)/$(package) && osc update); else (cd obs && osc checkout $(project) $(package)); fi | |
16 | 16 | cp $(spec) obs/$(project)/$(package)/ |
17 | 17 | cd obs/$(project)/$(package) && osc commit -m 'Update $(package)' | ... | ... |